I'm encountering an issue where my project's package name is not updating correctly after merging changes from the main branch.
Initially, I had a 'main' branch with the package name "com.myapp.motion". I created a branch 'B' from 'main', which inherited the same package name. Then, I changed the package name on the 'main' branch to "com.myapp.planning" and regenerated the Firebase config files. These files were correctly updated with the new package name.
However, after merging 'main' into branch 'B', the package name in branch 'B' did not update and remains "com.myapp.motion". This is causing an error because the Firebase config files have the updated bundle ID ("com.myapp.planning"), but my FlutterFlow app in branch 'B' still uses the old package name ("com.myapp.motion").
It seems that the package name change is not being properly propagated to branch 'B' during the merge process.