Xcode - Sharing app - PackageApplication failed with exit code 1

后端 未结 4 1491
攒了一身酷
攒了一身酷 2020-11-29 05:18

I\'ve created an ad hoc distribution build for my iPhone app using Xcode 4.1. The target successfully builds and produces an archive file that I can see in Organizer. I then

相关标签:
4条回答
  • 2020-11-29 05:53

    Check your code signing profiles again. Your developer profile should be set to the debug and for the release you must set your distribution profile. Make sure you select any iOS SDK under each category and set the respective profiles for them as well.

    0 讨论(0)
  • 2020-11-29 06:00

    Had the same problem today.. The "Code Signing Resource Rules Path" was missing in the PROJECT - Build Settings

    ... Opened the "Build Settings" tab of your project. Searched "Code Signing Resource Rules Path", it was empty for me and added $(SDKROOT)/ResourceRules.plist

    credits goes to Adams Blair who described this problem with SDK2.2

    0 讨论(0)
  • 2020-11-29 06:00

    yeah, i think it's xcode6.1 problem (or bug?)

    you can

    1.add $(SDKROOT)/ResourceRules.plist to "Code Signing Resource Rules Path"

    or

    2.use xcode-select back to 6.01 build

    or

    3.sign argument without "sign=iPhone Distribution: Grant Abt"

    to work

    0 讨论(0)
  • 2020-11-29 06:09

    Encounter this issue when testing with Xcode 6.1 beta version. Back to Xcode 6.0.1 works.

    0 讨论(0)
提交回复
热议问题