Magisk/stub/build.gradle.kts

34 lines
805 B
Plaintext
Raw Normal View History

2020-07-04 15:53:31 +02:00
plugins {
id("com.android.application")
}
android {
defaultConfig {
applicationId = "com.topjohnwu.magisk"
versionCode = 1
versionName = Config["appVersion"]
buildConfigField("String", "DEV_CHANNEL", Config["DEV_CHANNEL"] ?: "null")
}
buildTypes {
getByName("release") {
isMinifyEnabled = true
isShrinkResources = true
proguardFiles(
getDefaultProguardFile("proguard-android-optimize.txt"),
"proguard-rules.pro"
)
}
}
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"))
}