2017-12-13 10 views
1

원래 기업 프로필로 서명 된 .ipa 파일을 사임해야합니다. 보안상의 이유로이 프로젝트의 저장소에 액세스 할 수 없습니다. 또한 .plist 파일에서 빌드 번호를 수정해야합니다.Fastlane : 유효하지 않은 서명 - .ipa 파일 사임 후 잘못된 Info.plist 오류

먼저 내 배포 인증서 및 앱 스토어 프로파일을 사용하여 .ipa 파일을 사임 추월 차선 사용

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

터미널 출력이 성공적으로 사임했다.

그런 다음 바이너리 페이로드 내부의 info.plist 파일을 수정하기 위해 폴더를 압축 해제하십시오. 압축하는 아이튠즈 연결에 .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

당신의 .ipa을 사임하기 전에

답변

3

간단히의 Info.plist를 수정하려고 내 접근 뭐가 잘못 됐는지 알아낼 수 없습니다 파일. 그게 효과가있다.

+1

감사합니다. 해결책이었습니다. – ANE