mirror of
https://github.com/MetaCubeX/ClashMetaForAndroid.git
synced 2025-04-03 13:53:34 +03:00
Chore: clean build gradle
This commit is contained in:
parent
b2661d31fd
commit
c7d33c684b
1 changed files with 13 additions and 19 deletions
|
@ -34,29 +34,19 @@ subprojects {
|
||||||
apply(plugin = if (isApp) "com.android.application" else "com.android.library")
|
apply(plugin = if (isApp) "com.android.application" else "com.android.library")
|
||||||
|
|
||||||
extensions.configure<BaseExtension> {
|
extensions.configure<BaseExtension> {
|
||||||
val minSdkVersion = 21
|
|
||||||
val targetSdkVersion = 31
|
|
||||||
val buildVersionCode = 205003
|
|
||||||
val buildVersionName = "2.5.3"
|
|
||||||
val defaultDimension = "feature"
|
|
||||||
|
|
||||||
ndkVersion = "23.0.7599858"
|
|
||||||
|
|
||||||
compileSdkVersion(targetSdkVersion)
|
|
||||||
|
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
if (isApp) {
|
if (isApp) {
|
||||||
applicationId = "com.github.kr328.clash"
|
applicationId = "com.github.kr328.clash"
|
||||||
}
|
}
|
||||||
|
|
||||||
minSdk = minSdkVersion
|
minSdk = 21
|
||||||
targetSdk = targetSdkVersion
|
targetSdk = 31
|
||||||
|
|
||||||
versionName = buildVersionName
|
versionName = "2.5.3"
|
||||||
versionCode = buildVersionCode
|
versionCode = 205003
|
||||||
|
|
||||||
resValue("string", "release_name", "v$buildVersionName")
|
resValue("string", "release_name", "v$versionName")
|
||||||
resValue("integer", "release_code", "$buildVersionCode")
|
resValue("integer", "release_code", "$versionCode")
|
||||||
|
|
||||||
externalNativeBuild {
|
externalNativeBuild {
|
||||||
cmake {
|
cmake {
|
||||||
|
@ -71,6 +61,10 @@ subprojects {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ndkVersion = "23.0.7599858"
|
||||||
|
|
||||||
|
compileSdkVersion(defaultConfig.targetSdk!!)
|
||||||
|
|
||||||
if (isApp) {
|
if (isApp) {
|
||||||
packagingOptions {
|
packagingOptions {
|
||||||
excludes.add("DebugProbesKt.bin")
|
excludes.add("DebugProbesKt.bin")
|
||||||
|
@ -78,11 +72,11 @@ subprojects {
|
||||||
}
|
}
|
||||||
|
|
||||||
productFlavors {
|
productFlavors {
|
||||||
flavorDimensions(defaultDimension)
|
flavorDimensions("feature")
|
||||||
|
|
||||||
create("foss") {
|
create("foss") {
|
||||||
isDefault = true
|
isDefault = true
|
||||||
dimension = defaultDimension
|
dimension = flavorDimensionList[0]
|
||||||
versionNameSuffix = ".foss"
|
versionNameSuffix = ".foss"
|
||||||
|
|
||||||
buildConfigField("boolean", "PREMIUM", "Boolean.parseBoolean(\"false\")")
|
buildConfigField("boolean", "PREMIUM", "Boolean.parseBoolean(\"false\")")
|
||||||
|
@ -92,7 +86,7 @@ subprojects {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
create("premium") {
|
create("premium") {
|
||||||
dimension = defaultDimension
|
dimension = flavorDimensionList[0]
|
||||||
versionNameSuffix = ".premium"
|
versionNameSuffix = ".premium"
|
||||||
|
|
||||||
buildConfigField("boolean", "PREMIUM", "Boolean.parseBoolean(\"true\")")
|
buildConfigField("boolean", "PREMIUM", "Boolean.parseBoolean(\"true\")")
|
||||||
|
|
Loading…
Add table
Reference in a new issue