siegs
siegs

Reputation: 627

When i change my bundle ID on xCode the app doesn't behave properly - PhoneGap

I needed to change my bundle ID to something a little better as it was just my last name. So i changed it to the typical com.companyname.appname and now the app will build but doesn't behave the same. If i change it back to the previous ID then it will work again perfectly. I am using phoneGap. What is the proper way to change the Bundle ID?

Thanks

Upvotes: 0

Views: 1979

Answers (1)

codercat
codercat

Reputation: 23271

change in config.xml file after change bundle Identifier in your project.

  <widget id="your bundle id" version="0.0.1" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">

How to find: search your old bundle id in your xcode in search area

enter image description here

Open your Plist in xcode. then edit your bundle id

or

enter image description here

Upvotes: 1

Related Questions