Skip to content

Commit

Permalink
build(android): use fixed applicationId in gradle configuration
Browse files Browse the repository at this point in the history
applicationId must match the package name of the MainActivity class
  • Loading branch information
Harjot1Singh committed Jan 15, 2022
1 parent c963c58 commit ad312f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down

0 comments on commit ad312f6

Please sign in to comment.