当运行Android工具时,Gradle会忽略testProguardFile

时间:2019-05-31 08:14:16

标签: android gradle proguard instrumentation r8

我正在尝试在版本构建类型上运行测试。 我的设置如下:

Android Studio - 3.4.1
Android Gradle Plugin - 3.4.1
Gragle - 5.4.1
R8 - Enabled (default)

相关的 build.gradle 代码段:

    testBuildType "release"

    buildTypes {
        release {
            proguardFiles fileTree(dir: 'vendor', include: ['*.pro']).asList().toArray()
            debuggable true
            minifyEnabled true
            shrinkResources true
            signingConfig signingConfigs.release
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
            testProguardFile 'proguard-rules-test.pro'
            testCoverageEnabled false
        }
    }

proguard-rules-test.pro的内容(出于测试目的):

-keep public class ** { *; }

运行任何检测都会导致以下运行时异常:

com.MYAPP.debug E/InstrumentationResultPrinter: Failed to mark test No Tests as finished after process crash
com.MYAPP.debug E/MonitoringInstr: Exception encountered by: Thread[main,5,main]. Dumping thread state to outputs and pining for the fjords.
    java.lang.NoSuchMethodError: No virtual method setAppComponent(L/com/MYAPP/injection/AppComponent;)V in class L/com/MYAPP/data/common/MyApplication$Companion; or its super classes (declaration of 'com.MYAPP.data.common.MyApplication$Companion' appears in /data/app/com.MYAPP.debug-o3QrzyIOGC0Ko3XRS2fcxQ==/base.apk)
        at com.MYAPP.base.TestMyApplication.h(TestMyApplication.kt:20)
        at com.MYAPP.data.common.MyApplication.onCreate(MyApplication.kt:126)

TestMyApplication 扩展了 MyApplication ,并被 AndroidJUnitRunner 调用)

-keep 行从 proguard-rules-test.pro 移动到Proguard主规则文件中,使测试可以正常运行和通过。

有什么想法吗?

1 个答案:

答案 0 :(得分:0)

从sgjesse的回答中可能并不明显,但这是在两个不同的地方发生的。在最小输入上运行仪器测试的任务大致如下:

...

  1. 任务compileDebugWithJavaC任务

  2. 任务compileClassesAndResourcesWithR8ForDebug

  3. 任务compileDebugTestWithJavaC

  4. 任务compileClassesAndResourcesWithR8ForDebugTest

在上述任务中,1.和2.编译您的应用程序并使用R8对其进行优化,3.和4.编译您的测试并使用R8编译该测试,并将原始应用程序放在库路径中

当使用R8编译应用程序时,

proguardFiles getDefaultProguardFile('proguard-android.txt'),'proguard-rules.txt'将应用于2。 当使用R8编译测试时,

testProguardFile'proguard-rules-test.pro'将应用于测试。这就是为什么将保留规则添加到“常规” proguard文件中的原因,因为您将它们添加到较晚。

如果要在运行调试时将规则应用到您的主应用程序,只需添加调试配置并在其中添加另一个文件:

buildTypes{
  debug {
   ..
   proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt', 'proguard-rules-test.pro'
  }

在所有情况下,如果您添加-keep public class ** {* ;,我都不明白您为什么要“测试”您的缩小版应用程序}。这基本上将阻止R8进行任何优化,因此您最好在没有minifyEnabled的情况下进行测试。理想情况下,您应该在应用程序中找到测试的入口点,然后仅添加它们。当然,使用kotlin中生成的伴随类并不容易。