chore: identifier moved to BuildConfig

This commit is contained in:
yairm210
2024-07-17 17:06:40 +03:00
parent ce25cbf787
commit 3237d0a07d
2 changed files with 4 additions and 2 deletions

View File

@ -27,8 +27,8 @@ android {
resources.excludes += "DebugProbesKt.bin" resources.excludes += "DebugProbesKt.bin"
} }
defaultConfig { defaultConfig {
namespace = "com.unciv.app" namespace = BuildConfig.identifier
applicationId = "com.unciv.app" applicationId = BuildConfig.identifier
minSdk = 21 minSdk = 21
targetSdk = 33 // See #5044 targetSdk = 33 // See #5044
versionCode = BuildConfig.appCodeNumber versionCode = BuildConfig.appCodeNumber

View File

@ -10,4 +10,6 @@ object BuildConfig {
const val gdxVersion = "1.12.1" const val gdxVersion = "1.12.1"
const val ktorVersion = "2.3.12" const val ktorVersion = "2.3.12"
const val coroutinesVersion = "1.8.1" const val coroutinesVersion = "1.8.1"
const val identifier = "com.unciv.app"
} }