我有一个有 4 种产品口味的应用程序。build.gradle
看起来像这样:
android {
compileSdkVersion 23
buildToolsVersion "23.0.3"
defaultConfig {
applicationId "com.example.testing"
minSdkVersion 23
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
productFlavors {
flavor1 {
applicationId "com.flavor1"
}
flavor2 {
applicationId "com.flavor2"
}
flavor3 {
applicationId "com.flavor3"
}
flavor4 {
applicationId "com.flavor4"
}
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.4.0'
}
我已经为风味添加了源集,并为每种特定风味添加了一些文件。
此外,我想指定从主 sourceSet中排除的 flavor1 中的哪些文件。
主要 sourceSet 中要排除的文件main/java/com/example/testing/
在其中
- 文件1.java
- 文件2.java
- 文件3.java
- 文件4.java
在每种口味中,我想从中排除1 个文件。但我希望味道拥有所有其余部分。例子:
flavor1 应该有:file2、file3、file4。
falvor2 应该有:file1、file3、file4。
等等
正如您所看到的,这些文件由大多数风味共享,所以我不想将它们全部放在风味中,因为它将是代码副本,并且每个文件中的每个更改都必须应用于所有不同的风味文件。
我见过这个:
sourceSets {
flavor1 {
java {
srcdir 'testing'
exclude '/file1'
}
}
但这对我不起作用。我想不明白。
谢谢 }