From ad312f682ebb75148c388b7ff1937d078dfd24d1 Mon Sep 17 00:00:00 2001 From: Harjot Singh Date: Sat, 15 Jan 2022 14:32:45 +0000 Subject: [PATCH] build(android): use fixed applicationId in gradle configuration applicationId must match the package name of the MainActivity class --- android/app/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/app/build.gradle b/android/app/build.gradle index 8253d9d2..34677d62 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -138,7 +138,7 @@ android { compileSdkVersion rootProject.ext.compileSdkVersion defaultConfig { - applicationId getProjectProperty('applicationId', 'com.shabados.app.local') + applicationId 'com.shabados.app' minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion versionName getProjectProperty('version.name', '0.0.0')