How to rename Ionic app from HelloCordova
If your looking to change the iconic view name be sure to also update ionic.project
Updated
- Change the name in config.xml (@ project root) see the : documentation.
- Execute this command : $ sudo ionic cordova platform remove ios
- Check if the folder ios under platforms folder is deleted.
- Execute this command : $ sudo ionic cordova platform add ios
If changing the name
is not working for any reason delete entire platform folder and then
cordova platform add ios
ionic build ios
Edit: You want to change the config.xml
file in your project's root directory.
The tag which is responsible for the app name is <name>
.
look up the config documentation for more.