mirror of
https://github.com/bolucat/Archive.git
synced 2026-04-23 00:17:16 +08:00
21 lines
442 B
Kotlin
21 lines
442 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 {
|
|
api(kotlin("stdlib-jdk8"))
|
|
api("androidx.core:core-ktx:1.7.0")
|
|
api("androidx.fragment:fragment-ktx:1.5.5")
|
|
api("com.google.android.material:material:1.6.0")
|
|
}
|