Magisk/stub/build.gradle.kts

34 lines
845 B
Plaintext
Raw Normal View History

2020-07-04 15:53:31 +02:00
plugins {
id("com.android.application")
}
android {
val canary = !Config["appVersion"].orEmpty().contains(".")
2020-07-04 15:53:31 +02:00
defaultConfig {
applicationId = "com.topjohnwu.magisk"
versionCode = 1
versionName = Config["appVersion"]
buildConfigField("String", "DEV_CHANNEL", Config["DEV_CHANNEL"] ?: "null")
buildConfigField("boolean", "CANARY", if (canary) "true" else "false")
2020-07-04 15:53:31 +02:00
}
buildTypes {
getByName("release") {
isMinifyEnabled = true
isShrinkResources = true
2020-10-16 07:59:40 +02:00
proguardFiles("proguard-rules.pro")
2020-07-04 15:53:31 +02:00
}
}
2020-08-13 18:40:24 +02:00
dependenciesInfo {
includeInApk = false
includeInBundle = false
}
2020-07-04 15:53:31 +02:00
}
dependencies {
implementation(fileTree(mapOf("dir" to "libs", "include" to listOf("*.jar"))))
implementation(project(":app:shared"))
}