mirror of
https://github.com/amnezia-vpn/amnezia-client.git
synced 2026-06-23 02:00:20 +07:00
18 lines
308 B
Kotlin
18 lines
308 B
Kotlin
|
|
plugins {
|
||
|
|
id(libs.plugins.android.library.get().pluginId)
|
||
|
|
id(libs.plugins.kotlin.android.get().pluginId)
|
||
|
|
}
|
||
|
|
|
||
|
|
kotlin {
|
||
|
|
jvmToolchain(17)
|
||
|
|
}
|
||
|
|
|
||
|
|
android {
|
||
|
|
namespace = "org.amnezia.vpn.protocol.wireguard"
|
||
|
|
}
|
||
|
|
|
||
|
|
dependencies {
|
||
|
|
compileOnly(project(":utils"))
|
||
|
|
compileOnly(project(":protocolApi"))
|
||
|
|
}
|