Create utils module, move Log class there
BuildConfig class is now only created in the utils module
This commit is contained in:
parent
2fde47a86f
commit
f1c970461f
4 changed files with 19 additions and 1 deletions
17
client/android/utils/build.gradle.kts
Normal file
17
client/android/utils/build.gradle.kts
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
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
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue