mirror of
https://github.com/amnezia-vpn/amnezia-client.git
synced 2026-05-08 14:33:23 +00:00
24 lines
438 B
Plaintext
24 lines
438 B
Plaintext
plugins {
|
|
id(libs.plugins.android.library.get().pluginId)
|
|
id(libs.plugins.kotlin.android.get().pluginId)
|
|
}
|
|
|
|
kotlin {
|
|
jvmToolchain(17)
|
|
}
|
|
|
|
android {
|
|
namespace = "org.amnezia.vpn.util"
|
|
|
|
buildFeatures {
|
|
// add BuildConfig class
|
|
buildConfig = true
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation(libs.androidx.core)
|
|
implementation(libs.kotlinx.coroutines)
|
|
implementation(libs.androidx.security.crypto)
|
|
}
|