2017-12-13 14 views
1

元々エンタープライズプロファイルで署名された.ipaファイルを辞表する必要があります。 セキュリティ上の理由から、私はこのプロジェクトのリポジトリにアクセスできません。また、 .plistファイルのビルド番号を変更する必要があります。ファストレーン:無効な署名 - .ipaファイルの辞退後の無効なInfo.plistエラー

まず、私は私の配布証明書とアプリストアのプロファイルと.ipaファイルを辞任するfastlaneを使用します。

fastlane sigh resign /Users/myUserName/Desktop/FolderContainsMyIPA/MyIPAName.ipa --signing_identity "iPhone Distribution: MyDistributionCertName" -p /Users/myUserName/Desktop/FolderContainsMyIPA/myAppStoreProfile.mobileprovision 

ターミナル出力が辞任が成功したと言います。

次に、バイナリペイロード内のinfo.plistファイルを変更するために、フォルダを解凍して解凍します。 iTunesのConnectに.ipaをビュンとアップロードした後、私は常に次のエラーが表示されます。

Dear developer,

We have discovered one or more issues with your recent delivery for „My App Name". To process your delivery, the following issues must be corrected:

Invalid Signature - Invalid Info.plist (plist or signature have been modified). The file at path [Template.app/Template] is not properly signed. Make sure you have signed your application with a distribution certificate, not an ad hoc certificate or a development certificate. Verify that the code signing settings in Xcode are correct at the target level (which override any values at the project level). Additionally, make sure the bundle you are uploading was built using a Release target in Xcode, not a Simulator target. If you are certain your code signing settings are correct, choose "Clean All" in Xcode, delete the "build" directory in the Finder, and rebuild your release target. For more information, please consult https://developer.apple.com/library/ios/documentation/Security/Conceptual/CodeSigningGuide/Introduction/Introduction.html

Once these issues have been corrected, you can then redeliver the corrected binary.

Regards,

The App Store team

は私のアプローチ

答えて

3

が悪いのかを把握することはできません単にあなたの.ipaを辞任する前にInfo.plistファイルを変更してみてくださいファイル。それはうまくいくはずです。

+1

これは解決策でした。 – ANE