mirror of
https://github.com/MetaCubeX/ClashMetaForAndroid.git
synced 2024-11-16 12:22:17 +08:00
11c4e19e0c
* Refactor: refactor project structure * Chore: remove apply * Chore: update clash core * Fix: fix versionName & versionCode patch * Chore: update golang plugin * Fix: fix workflow build
23 lines
649 B
Plaintext
23 lines
649 B
Plaintext
plugins {
|
|
kotlin("android")
|
|
kotlin("kapt")
|
|
id("com.android.library")
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":common"))
|
|
implementation(project(":core"))
|
|
implementation(project(":service"))
|
|
|
|
implementation(kotlin("stdlib-jdk7"))
|
|
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)
|
|
}
|