Commit c59eaada authored by fallenstardust's avatar fallenstardust

revert targetSDK 分包

parent 988e5158
...@@ -7,60 +7,32 @@ android { ...@@ -7,60 +7,32 @@ android {
defaultConfig { defaultConfig {
applicationId "cn.garymb.ygomobile" applicationId "cn.garymb.ygomobile"
minSdkVersion 21 minSdkVersion 21
//noinspection ExpiredTargetSdkVersion
targetSdkVersion 29 targetSdkVersion 29
versionCode 380300525 versionCode 380300525
versionName "3.8.3" versionName "3.8.3"
flavorDimensions "versionCode" flavorDimensions "versionCode"
vectorDrawables.useSupportLibrary = true vectorDrawables.useSupportLibrary = true
ndk {
abiFilters "arm64-v8a", "armeabi-v7a", "x86"
}
} }
compileOptions { compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8 sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8
} }
flavorDimensions 'abi', 'lang'
productFlavors { productFlavors {
cn { cn {
dimension 'lang'
manifestPlaceholders = [APP_ID: "0b6f110306"] manifestPlaceholders = [APP_ID: "0b6f110306"]
} }
en { en {
dimension 'lang'
applicationIdSuffix ".EN" applicationIdSuffix ".EN"
manifestPlaceholders = [APP_ID: "9c66525dfa"] manifestPlaceholders = [APP_ID: "9c66525dfa"]
} }
ko { ko {
dimension 'lang'
applicationIdSuffix ".KO" applicationIdSuffix ".KO"
manifestPlaceholders = [APP_ID: "0488398d8a"] manifestPlaceholders = [APP_ID: "0488398d8a"]
} }
x86 {
dimension 'abi'
ndk {
abiFilters "x86"
}
}
arm {
dimension 'abi'
ndk {
abiFilters "armeabi-v7a"
}
}
arm64 {
dimension 'abi'
ndk {
abiFilters "arm64-v8a"
}
}
} }
// splits {
// abi {
// enable true
// reset()
// include 'x86', 'armeabi-v7a', 'arm64-v8a'
// universalApk true
// }
// }
buildTypes { buildTypes {
release { release {
shrinkResources false shrinkResources false
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment