mirror of
https://github.com/amnezia-vpn/amnezia-client.git
synced 2026-05-08 14:33:23 +00:00
19 lines
344 B
Plaintext
19 lines
344 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.protocol.awg"
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly(project(":utils"))
|
|
compileOnly(project(":protocolApi"))
|
|
implementation(project(":wireguard"))
|
|
}
|