mirror of
https://github.com/MetaCubeX/ClashMetaForAndroid.git
synced 2024-11-16 11:52:18 +08:00
899803739b
* Inline version strings * Optimize gradle * Remove kotlin-stdlib-jdk7 * Add jvmargs in gradle.properties * Revert "Inline version strings" This reverts commit ad2ab2bb * Revert asserts
33 lines
876 B
Plaintext
33 lines
876 B
Plaintext
plugins {
|
|
kotlin("android")
|
|
kotlin("kapt")
|
|
id("com.android.application")
|
|
}
|
|
|
|
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)
|
|
|
|
val premiumImplementation by configurations
|
|
|
|
premiumImplementation(deps.appcenter.analytics)
|
|
premiumImplementation(deps.appcenter.crashes)
|
|
}
|
|
|
|
tasks.getByName("clean", type = Delete::class) {
|
|
delete(file("release"))
|
|
}
|