From 9dea0fb95a59785bcbb67cd13a4ceb4a88cb594a Mon Sep 17 00:00:00 2001 From: Kesha Antonov Date: Wed, 8 Nov 2023 05:15:50 +0300 Subject: [PATCH] android: use namescape conditinally --- android/build.gradle | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/android/build.gradle b/android/build.gradle index 04145e0..892f3fe 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -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 {