Reputation: 29
Java 8 language support, as requested by 'android.enableD8.desugaring= true' in your gradle.properties file, is not supported when 'android.useDexArchive= false'.
Upvotes: 2
Views: 3151
Reputation: 61
try like this,
Add this line in gradle.properties android.useDexArchive=true
Upvotes: 0
Reputation: 651
I guess you used tinker with old version. You can return your
classpath 'com.android.tools.build:gradle:3.2.0'
to
classpath 'com.android.tools.build:gradle:3.1.3'
maybe you can upgrade tinker version but I didn't verify it.
I used tinker verison
implementation 'com.tencent.tinker:tinker-android-lib:1.9.6'
Upvotes: 2