From a1d256b1b62de0e447325b121a01e0e470e76fee Mon Sep 17 00:00:00 2001 From: gasolin Date: Tue, 28 May 2024 10:10:23 +0800 Subject: [PATCH] Fix Android Gradle Plugin error >= 8.x.x --- android/build.gradle | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/android/build.gradle b/android/build.gradle index 5a9971bf..7fb24c93 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -24,6 +24,11 @@ android { versionCode 1 versionName "1.0" } + + // Conditional for compatibility with AGP <4.2. + if (project.android.hasProperty("namespace")) { + namespace = "io.wazo.callkeep" + } } repositories {