2021-05-15 00:51:08 +08:00
|
|
|
plugins {
|
|
|
|
kotlin("android")
|
|
|
|
kotlin("kapt")
|
2021-09-11 14:53:09 +08:00
|
|
|
id("com.android.application")
|
2021-05-15 00:51:08 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2021-09-12 17:50:48 +08:00
|
|
|
compileOnly(project(":hideapi"))
|
|
|
|
|
2021-09-11 14:53:09 +08:00
|
|
|
implementation(project(":core"))
|
|
|
|
implementation(project(":service"))
|
|
|
|
implementation(project(":design"))
|
|
|
|
implementation(project(":common"))
|
2021-05-16 18:15:36 +08:00
|
|
|
|
2021-09-11 14:53:09 +08:00
|
|
|
implementation(deps.kotlin.coroutine)
|
|
|
|
implementation(deps.androidx.core)
|
|
|
|
implementation(deps.androidx.activity)
|
|
|
|
implementation(deps.androidx.fragment)
|
|
|
|
implementation(deps.androidx.appcompat)
|
|
|
|
implementation(deps.androidx.coordinator)
|
|
|
|
implementation(deps.androidx.recyclerview)
|
|
|
|
implementation(deps.google.material)
|
2021-05-15 00:51:08 +08:00
|
|
|
|
2021-09-11 14:53:09 +08:00
|
|
|
val premiumImplementation by configurations
|
2021-05-16 18:15:36 +08:00
|
|
|
|
2021-09-11 14:53:09 +08:00
|
|
|
premiumImplementation(deps.appcenter.analytics)
|
|
|
|
premiumImplementation(deps.appcenter.crashes)
|
2021-05-15 00:51:08 +08:00
|
|
|
}
|
|
|
|
|
2021-09-11 14:53:09 +08:00
|
|
|
tasks.getByName("clean", type = Delete::class) {
|
2021-05-15 00:51:08 +08:00
|
|
|
delete(file("release"))
|
|
|
|
}
|