Skip to content

Commit

Permalink
[android] Fix a bundle id duplication
Browse files Browse the repository at this point in the history
  • Loading branch information
vomchik committed Apr 7, 2021
1 parent ac72f8f commit 50e1348
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/config/bundleIdentifiers.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ export function bundleIdentifiers({ currentAppName, newName, currentBundleID, ne

return [
{
regex: currentBundleID,
replacement: newBundleID,
regex: new RegExp(`package="${currentBundleID}"`),
replacement: `package="${newBundleID}"`,
paths: ['android/app/BUCK', 'android/app/build.gradle', 'android/app/src/main/AndroidManifest.xml'],
},
{
Expand Down

0 comments on commit 50e1348

Please sign in to comment.