mirror of
https://github.com/MetaCubeX/ClashMetaForAndroid.git
synced 2026-06-29 21:00:36 +08:00
17 lines
417 B
Kotlin
17 lines
417 B
Kotlin
import org.gradle.api.Project
|
|
|
|
const val buildVersionCode = 204005
|
|
const val buildVersionName = "2.4.5"
|
|
|
|
const val buildMinSdkVersion = 21
|
|
const val buildTargetSdkVersion = 30
|
|
|
|
const val buildNdkVersion = "22.1.7171670"
|
|
|
|
val Project.buildFlavor: String
|
|
get() {
|
|
return if (project(":core").file("src/main/golang/clash/script/script.go").exists())
|
|
"premium"
|
|
else
|
|
"foss"
|
|
} |