From bb2830d5b316eb0d96291c37f562d4bc62401ed7 Mon Sep 17 00:00:00 2001 From: bang9 Date: Wed, 16 Aug 2023 13:56:41 +0900 Subject: [PATCH] chore: fix version range --- android/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/build.gradle b/android/build.gradle index 0ed4697..d465e06 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -51,7 +51,7 @@ project.ext { android { def agpVersion = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION - if (agpVersion.tokenize('.')[0].toInteger() >= 7) { + if (agpVersion.tokenize('.')[0].toInteger() > 7) { namespace "com.sendbird.calls.reactnative" }