0

Xcode オーガナイザーでアプリ識別子が表示されません!

スクリーンショット

XCode - 4.2 を使用しています。この問題の原因は何ですか?

4

1 に答える 1

0

You have to install the provisioning profile to the project (double click on the project). After this, you should setup the App Identifier (you can see it even in the provisioning profile - open the project file, select from the "targets" the project, select the "Build Settings" tab, and find the Code Signing Identity. Open the list, and there you can see the installed provisioning profile, with the corresponding app identifiers for each other). So, this app identifier you should put in the:

  1. [projname]-Info.plist file, to the bundle identifier property
  2. project file -> targets -> select the project -> summary -> Identifier (warning: you cannot modify the Identifier if in the Info.plist file at the bundle identifier you have ${PRODUCT_NAME:rfc1034identifier}. In this case you should change from the info.plist file).

Now, go back to the Build Settings, and you will be able now to select the corresponding provisioning profile. If it's necessary: select from the left list: project -> Project name -> build settings tab -> Code signing -> select the provisioning profile.

Now, in the organiser should be visible the app identifier.

于 2012-07-13T09:46:57.823 に答える