20 lines
504 B
Groovy
20 lines
504 B
Groovy
project.android.productFlavors {
|
|
bailing {
|
|
dimension "role"
|
|
applicationId "com.mogo.launcher.rk.passenger"
|
|
externalNativeBuild {
|
|
ndk {
|
|
// 设置支持的SO库架构
|
|
abiFilters "armeabi-v7a", "arm64-v8a"
|
|
}
|
|
}
|
|
|
|
manifestPlaceholders = [
|
|
CHANNEL_VALUE_BODY : "Passenger",
|
|
]
|
|
|
|
// ①标识
|
|
buildConfigField 'String', 'APP_IDENTITY_MODE_BODY', "\"Passenger\""
|
|
|
|
}
|
|
} |