pdlivexp/package_config.gradle

97 lines
3.7 KiB
Groovy
Raw Normal View History

android {
dexOptions {
jumboMode = true
javaMaxHeapSize "8g"
preDexLibraries = true
threadCount = 8
}
flavorDimensions 'packageApk'
productFlavors {
link_test {
dimension 'packageApk'
manifestPlaceholders = [
serverHost : rootProject.ext.manifestPlaceholders.testServerHost,
isGooglePlay : 0,
isUploadLog : true,
isPluginModel: rootProject.ext.manifestPlaceholders.isPluginModel
]
}
link_online {
dimension 'packageApk'
manifestPlaceholders = [
serverHost : rootProject.ext.manifestPlaceholders.serverHost,
isGooglePlay : 0,
isUploadLog : true,
isPluginModel: rootProject.ext.manifestPlaceholders.isPluginModel
]
}
samsung_test {
dimension 'packageApk'
manifestPlaceholders = [
serverHost : rootProject.ext.manifestPlaceholders.testServerHost,
isGooglePlay : 3,
isUploadLog : true,
isPluginModel: rootProject.ext.manifestPlaceholders.isPluginModel
]
}
samsung_online {
dimension 'packageApk'
manifestPlaceholders = [
serverHost : rootProject.ext.manifestPlaceholders.serverHost,
isGooglePlay : 3,
isUploadLog : true,
isPluginModel: rootProject.ext.manifestPlaceholders.isPluginModel
]
}
google_test {
dimension 'packageApk'
2024-08-20 15:18:54 +08:00
if (project.getPluginManager().hasPlugin("com.android.application")) {
applicationId "com.test.pd"
}
manifestPlaceholders = [
serverHost : rootProject.ext.manifestPlaceholders.testServerHost,
isGooglePlay : 1,
isUploadLog : true,
2024-08-20 15:18:54 +08:00
isPluginModel: rootProject.ext.manifestPlaceholders.isPluginModel,
facebook_app_id : "999999999",
facebook_client_token : "888888888",
channelId : "google"
]
}
google_online {
dimension 'packageApk'
if (project.getPluginManager().hasPlugin("com.android.application")) {
applicationId "com.test.pd"
}
manifestPlaceholders = [
serverHost : rootProject.ext.manifestPlaceholders.serverHost,
isGooglePlay : 1,
isUploadLog : true,
2024-08-20 15:18:54 +08:00
isPluginModel: rootProject.ext.manifestPlaceholders.isPluginModel,
facebook_app_id : "999999999",
facebook_client_token : "888888888",
channelId : "google"
]
}
huawei_test {
dimension 'packageApk'
manifestPlaceholders = [
serverHost : rootProject.ext.manifestPlaceholders.testServerHost,
isGooglePlay : 2,
isUploadLog : true,
isPluginModel: rootProject.ext.manifestPlaceholders.isPluginModel
]
}
huawei_online {
dimension 'packageApk'
manifestPlaceholders = [
serverHost : rootProject.ext.manifestPlaceholders.serverHost,
isGooglePlay : 2,
isUploadLog : true,
isPluginModel: rootProject.ext.manifestPlaceholders.isPluginModel
]
}
}
}