ClashMetaForAndroid/app/build.gradle.kts

33 lines
876 B
Plaintext
Raw Normal View History

2021-05-15 00:51:08 +08:00
plugins {
kotlin("android")
kotlin("kapt")
id("com.android.application")
2021-05-15 00:51:08 +08:00
}
dependencies {
compileOnly(project(":hideapi"))
implementation(project(":core"))
implementation(project(":service"))
implementation(project(":design"))
implementation(project(":common"))
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
val premiumImplementation by configurations
premiumImplementation(deps.appcenter.analytics)
premiumImplementation(deps.appcenter.crashes)
2021-05-15 00:51:08 +08:00
}
tasks.getByName("clean", type = Delete::class) {
2021-05-15 00:51:08 +08:00
delete(file("release"))
}