2020-07-18 05:41:15 +00:00
|
|
|
plugins {
|
|
|
|
id("com.android.application")
|
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
|
|
|
defaultConfig {
|
|
|
|
applicationId = "com.topjohnwu.libsuexample"
|
2020-07-26 09:06:08 +00:00
|
|
|
minSdkVersion(18)
|
2020-07-18 05:41:15 +00:00
|
|
|
versionCode = 1
|
|
|
|
versionName ="1.0"
|
|
|
|
}
|
|
|
|
|
2020-07-26 09:06:08 +00:00
|
|
|
buildFeatures {
|
|
|
|
viewBinding = true
|
|
|
|
}
|
|
|
|
|
2020-07-18 05:41:15 +00:00
|
|
|
buildTypes {
|
|
|
|
getByName("release") {
|
|
|
|
isMinifyEnabled = false
|
|
|
|
proguardFiles(
|
|
|
|
getDefaultProguardFile("proguard-android.txt"),
|
|
|
|
"proguard-rules.pro"
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation(fileTree(mapOf("dir" to "libs", "include" to listOf("*.jar"))))
|
|
|
|
implementation(project(":core"))
|
|
|
|
implementation(project(":busybox"))
|
2020-07-26 09:06:08 +00:00
|
|
|
implementation(project(":service"))
|
2020-07-18 05:41:15 +00:00
|
|
|
}
|