DexGuard integration in Android Studio 3.0

前端 未结 1 1684
终归单人心
终归单人心 2021-02-06 13:38

I have upgraded my Android project to use the latest Android Studio 3.0 features. Since then, I am getting the following warning message on each Gradle sync:

相关标签:
1条回答
  • 2021-02-06 14:32

    You are probably using Dexguard for code obfuscation, encryption or tamper detection. So removing it will remove those functionalities. You should try out the 8.0.17 release of dexguard and remove retrolamb, Jack and the Dexguard-java8 plugin from your build config.

    On my app this seems to keep working, on 8.0.15/8.0.16 I still had to enable dexguard-java8 to have it working.

    in your app build.gradle add this to enable java8 compiling.

    apply plugin: 'dexguard'
    ...
    android {
      compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
      }
    }
    

    In your project.gradle just add

    buildscript {
      repositories {
        flatDir { dirs 'dexguard' }
        ...
      }
      dependencies {
        classpath 'com.android.tools.build:gradle:3.0.0'
        classpath ':dexguard:'
        ...
      }
    }
    

    and make sure there are no references to retrolambda or dexguard-java8 in your gradle files and everything should work fine.

    0 讨论(0)
提交回复
热议问题