Is there any relation between the Bundle Identifier w开发者_开发百科e 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?
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.
the simplest way to find bundle identifier from provisioning profile is open it in text editor and search for string "com." the first result will be your bundle identifier.
please do not change or save file after that otherwise you will find it dumb file.
Thanks
精彩评论