Can i change my bundle ID?

I’ve already created a framework7 cordova project using the CLI, now I want to change the bundle ID. is that possible? if yes, how?

Just change it in config.xml and package.json files. it wouldn’t be bad if you did this "framework7 cordova prepare " for cordova

My advise is to remove all platforms, modify the bundle ID in config.xml and re-add the platforms. I build whitelabel apps for many years, and modifying the bundle ID another way causes all sorts of problems. Many plugins somehow use the bundle ID in their config strings or filenames of generated build artifacts on Android. By removing and re-adding the platforms, all plugins configs and hooks are executed again and ensures that the bundle ID is modified everywhere. If you follow the Cordova guidelines and never manually modify files in the platform folders, this should be no problemen.

2 Likes