How to rename Ionic app from HelloCordova

The Ionic framework is pretty great stuff. I was able to successfully build an app with some Angular code I have been working on, but I can't find an answer to the simple question of how to rename the app that gets generated. The output app is always called HelloCordova and there doesn't seem to be any documentation on how to change the name of the app. If I start manually digging through the project directory replacing HelloCordova, I end up with an app that won't run. Surely, people have solved this before.

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 http://cordova.apache.org/docs/en/5.1.1/config_ref_index.md.html for more.

Yes, you just have to modify the config.xml. Find a "name" tag and put your required name between this tag.

If your looking to change the iconic view name be sure to also update ionic.project

In the parent directory of the ionic project there is a config.xml

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<widget id="com.ionicframework.todo497320" version="0.0.1" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<name>CHANGE NAME HERE</name>

Note that the project name will be seen in various other places in the app, all these will be changed automatically when the app is built