libsu/example/build.gradle.kts

34 lines
730 B
Plaintext
Raw Normal View History

2020-07-18 05:41:15 +00:00
plugins {
id("com.android.application")
}
android {
defaultConfig {
applicationId = "com.topjohnwu.libsuexample"
minSdkVersion(18)
2020-07-18 05:41:15 +00:00
versionCode = 1
versionName ="1.0"
}
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"))
implementation(project(":service"))
2020-07-18 05:41:15 +00:00
}