I am working with an app in Android Studio. I need to use Java version 8 so I can use one library(dnsjava: https://github.com/dnsjava/dnsjava ).

When I try to use java version 8 writing this in my build.gradle (:app) file:

compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8

    }

I get this error: com.android.builder.dexing.DexArchiveBuilderException: Failed to process D:....\app\build\intermediates\transforms\desugar\debug\13.jar

Any ideas?

1

There are 1 best solutions below

0
On

I faced exactly the same issue and I was able to resolve it by following the fix provided here.

In a nutshell, you should add the following to your build file:

compileOptions {
    coreLibraryDesugaringEnabled true
    sourceCompatibility JavaVersion.VERSION_1_8
    targetCompatibility JavaVersion.VERSION_1_8
}

dependencies {
    coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.1.5'
    ...
}

I hope this works for you too :)