Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Cordova overwrites bundle identifier after changing it

I'm developing an IOS app using cordova, the problem is that I created the project with the wrong bundle identifier.

After I changed it, if I execute: cordova build the bundle identifier gets overwritten to the original, the one I don´t want.

I tried changing the id in .cordova/config.json, however, the problem persist.

like image 732
danielrvt Avatar asked Jan 10 '14 19:01

danielrvt


People also ask

What does bundle identifier do?

In the Apple App Store, the Bundle ID serves as a resource that represents the app's unique identifier that you can register, modify, and delete. It allows you to connect third-party services offered by Apple such as “Health, Apple Pay and In-App Purchases”.

Where is the bundle identifier XCode?

Open you project with XCode, select the top project item in the project navigator at the left. Then select TARGETS -> General. Bundle Identifier is found under Identity.


1 Answers

You should be able to set your bundle identifier with

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

in the file www/config.xml.

like image 155
Julian D. Avatar answered Oct 05 '22 10:10

Julian D.