Skip to content

Commit

Permalink
fix: config with multiple bundle ids (#1816)
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanWalker committed Jul 19, 2024
1 parent 9fb12f5 commit cdcfee2
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions test-app/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -192,11 +192,14 @@ def computeNamespace = { ->

def appIdentifier = ""

if (packageJsonMap && packageJsonMap.id) {
appIdentifier = packageJsonMap.id
if (packageJsonMap) {
if (packageJsonMap.android && packageJsonMap.android.id) {
appIdentifier = packageJsonMap.android.id
} else if (packageJsonMap.id) {
appIdentifier = packageJsonMap.id
}
}


if (appIdentifier) {
return appIdentifier
}
Expand Down

0 comments on commit cdcfee2

Please sign in to comment.