Cordoba overwrites package identifier after changing it

I am developing an iOS application using cordova, the problem is that I created a project with the wrong package identifier.

After I changed it, if I did: cordova buildthe package identifier will be overwritten in the original, the one I do not need.

I tried changing the identifier in .cordova / config.json, however the problem persists.

+4
source share
1 answer

You must set the package ID with

<widget id="my.bundle.identifier" version="0.6" ...

in the file www/config.xml.

+10
source

All Articles