如何在库项目中配置Proguard for Android检测测试?

时间:2017-01-30 17:50:32

标签: android testing gradle android-instrumentation

当我们尝试为驻留在库模块中的检测测试配置规则时,proguard配置很痛苦。之前有same kinda question的答案,但它仅适用于应用程序模块而非库1。

是否有强制执行proguard规则以应用作为库模块一部分的检测测试应用程序?

apply plugin: 'com.android.library'

android {
  buildTypes {
   all {
     minifyEnabled true
     proguardFile 'proguard-rules.pro'
     testProguardFile 'test-proguard-rules.pro'
   }
  }
}

0 个答案:

没有答案