Reputation: 11497
I know it's possible to change the package name by modifying the config.xml file. As seen on this question. But is it possible to specify the package name prior to the creation of the project, like we do on cordova?
Cordova example: cordova create hello com.example.hello HelloWorld
Now, on Ionic, is it possible to do something similar?
Upvotes: 0
Views: 410
Reputation: 5897
Try something like this:
$ionic start -a todo -i com.carlosrojasblog.todo todo blank
change [todo
] for your project name and [com.carlosrojasblog.todo
] for your own package name.
Upvotes: 1