Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Bundle Identifier and Provisioning Profile

Is there any relation between the Bundle Identifier we see in Info.plist and the Provisioning Profile under Organizer (like some para should be same)?

Also should the same value be also the same in Info/Settings?

like image 830
copenndthagen Avatar asked Mar 15 '11 14:03

copenndthagen


1 Answers

When you create an App ID you need to fill a name(ex: 'YourCompany') for it and a wildcard bundle identifier(something like ‘com.yourcompany.*’). The ‘.*’ at the end is the wildcard, needed so that you only need one set of provisioning profiles for all your applications.

A provisioning profile needs an AppID in order to be created.

in the Info.plist of your application in the BundleIdentifier you can put com.yourcompany.TestApp and your application will work on your device.

com.yourcompany.TestApp should be in the info.plist and in the info>properties>identifier.

here you can find a tutorial that describes what it needs to be done in order to create AppIDs and provisioning profiles. If you'll read it you will understand how they work and what is the relationship between them.

like image 151
Sorin Antohi Avatar answered Oct 01 '22 22:10

Sorin Antohi