mirror of
https://github.com/bolucat/Archive.git
synced 2026-04-23 00:17:16 +08:00
24 lines
551 B
Kotlin
24 lines
551 B
Kotlin
plugins {
|
|
id("com.android.library")
|
|
id("com.vanniktech.maven.publish")
|
|
kotlin("android")
|
|
id("kotlin-parcelize")
|
|
}
|
|
|
|
setupCommon()
|
|
|
|
android {
|
|
namespace = "com.github.shadowsocks.plugin"
|
|
lint.informational += "GradleDependency"
|
|
}
|
|
|
|
dependencies {
|
|
coreLibraryDesugaring(libs.desugar)
|
|
api(libs.androidx.core.ktx)
|
|
api(libs.androidx.fragment.ktx)
|
|
api(libs.material)
|
|
testImplementation(libs.junit)
|
|
androidTestImplementation(libs.androidx.test.runner)
|
|
androidTestImplementation(libs.androidx.espresso.core)
|
|
}
|