amnezia-client/client/android/utils/build.gradle.kts
albexk f1c970461f Create utils module, move Log class there
BuildConfig class is now only created in the utils module
2023-11-16 15:15:02 +03:00

17 lines
282 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"
buildFeatures {
// add BuildConfig class
buildConfig = true
}
}