Magisk/stub/build.gradle.kts
2021-09-02 01:39:34 -07:00

40 lines
964 B
Plaintext

plugins {
id("com.android.application")
}
android {
val canary = !Config.version.contains(".")
val url = Config["DEV_CHANNEL"] ?: if (canary) null
else "https://cdn.jsdelivr.net/gh/topjohnwu/magisk-files@${Config.version}/app-release.apk"
defaultConfig {
applicationId = "com.topjohnwu.magisk"
versionCode = 1
versionName = Config.version
buildConfigField("int", "STUB_VERSION", Config.stubVersion)
buildConfigField("String", "APK_URL", url?.let { "\"$it\"" } ?: "null" )
}
buildTypes {
getByName("release") {
isMinifyEnabled = true
isShrinkResources = false
proguardFiles("proguard-rules.pro")
}
}
androidResources {
additionalParameters("--package-id", "0x80")
}
dependenciesInfo {
includeInApk = false
includeInBundle = false
}
}
dependencies {
implementation(project(":app:shared"))
}