我正在处理的 android 项目有 3 种构建类型-debug
和:qa
release
buildTypes {
release {
...
}
qa {
...
}
debug {
...
}
}
我希望有一个依赖项(崩溃报告库)仅适用于debug
,qa
但不适用于release
.
我想这可以通过复制构建类型特定的编译行来完成,如下所示:
dependencies {
...
debugCompile 'com.mindscapehq.android:raygun4android:1.3.0:sources'
qaCompile 'com.mindscapehq.android:raygun4android:1.3.0:sources'
}
有没有办法在不重复的情况下做到这一点?