bus 司机乘客添加接驳flavor

This commit is contained in:
yangyakun
2023-01-04 16:46:22 +08:00
parent e09298fbb7
commit dbf2f2e50b
8 changed files with 144 additions and 0 deletions

View File

@@ -38,6 +38,20 @@ android {
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
flavorDimensions "product"
productFlavors {
basc {
dimension "product"
buildConfigField 'int', 'NEW_TEST', '0'
}
// 接驳车
shuttle {
dimension "product"
buildConfigField 'int', 'NEW_TEST', '1'
}
}
}
dependencies {

View File

@@ -38,6 +38,23 @@ android {
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
flavorDimensions "product"
productFlavors {
basc {
dimension "product"
buildConfigField 'int', 'NEW_TEST', '0'
}
// 接驳车
shuttle {
dimension "product"
buildConfigField 'int', 'NEW_TEST', '1'
}
}
}
dependencies {