Add .dev suffix to bundle identifier for debug and profile builds on iOS
We should to add the changes from !222 (merged) to the iOS build as well, i.e. add the .dev
suffix to the bundle identifier for the debug and profile builds to allow dev builds to be installed alongside the production app. @mlbn33, can you take care of this, please? :)
I searched the project for the bundle identifier using ripgrep and found three occurrences in one file:
$ rg tcfrontend
ios/Runner.xcodeproj/project.pbxproj
384: PRODUCT_BUNDLE_IDENTIFIER = de.thm.kim.tinycampus.tcfrontend;
526: PRODUCT_BUNDLE_IDENTIFIER = de.thm.kim.tinycampus.tcfrontend;
559: PRODUCT_BUNDLE_IDENTIFIER = de.thm.kim.tinycampus.tcfrontend;
I would've made the change in the file myself but i didn't have any Apple hardware at hand to check if it worked. Maybe the Stackoverflow link below is helpful.