Create utils module, move Log class there

BuildConfig class is now only created in the utils module
This commit is contained in:
albexk 2023-11-16 15:15:02 +03:00
parent 2fde47a86f
commit f1c970461f
4 changed files with 19 additions and 1 deletions

View 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
}
}