android: use namescape conditinally

This commit is contained in:
Kesha Antonov
2023-11-08 05:15:50 +03:00
parent 36e4834be5
commit 9dea0fb95a

View File

@@ -7,7 +7,10 @@ def safeExtGet(prop, fallback) {
}
android {
namespace "com.eko"
if (project.android.hasProperty("namespace")) {
namespace "com.eko"
}
compileSdkVersion safeExtGet('compileSdkVersion', 34)
defaultConfig {