mirror of
https://github.com/MetaCubeX/ClashMetaForAndroid.git
synced 2024-11-24 06:16:29 +03: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
22 lines
607 B
Plaintext
22 lines
607 B
Plaintext
plugins {
|
|
kotlin("android")
|
|
kotlin("kapt")
|
|
id("com.android.library")
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":common"))
|
|
implementation(project(":core"))
|
|
implementation(project(":service"))
|
|
|
|
implementation(deps.kotlin.coroutine)
|
|
implementation(deps.androidx.core)
|
|
implementation(deps.androidx.appcompat)
|
|
implementation(deps.androidx.activity)
|
|
implementation(deps.androidx.coordinator)
|
|
implementation(deps.androidx.recyclerview)
|
|
implementation(deps.androidx.fragment)
|
|
implementation(deps.androidx.viewpager)
|
|
implementation(deps.google.material)
|
|
}
|