Embedded binary is not signed with the same certificate as the parent app yet they are identical

后端 未结 7 800
粉色の甜心
粉色の甜心 2021-01-18 06:06

An app extension is causing a code signing issue. This app is already on the Appstore (with this extension) yet overnight for some reason when I have come back to this ap

相关标签:
7条回答
  • 2021-01-18 06:46

    When I had this issue I went to the Apple Member Center and realized that the Provisioning Profile (for the extension) that I had created was marked as 'Invalid'. I just re-created the Provisioning Profile with the same certificate that the app is signed with and then downloaded it via Xcode > Preferences > Account > refresh.

    Once I had the new provisioning profiles I selected them in the build settings. I selected the provisioning profile that was just created and also selected the corresponding certificate in the Code signing entity in the build settings and that fixed the issue.

    Note that the extension has its own app id and hence its own provisioning profile.

    0 讨论(0)
  • 2021-01-18 06:48

    So if anyone comes across this cryptic message the "App Group" switch in Capabilities of the app extension was off for some reason. Turned it back on and all good. Fix any "issues" if it requires you to when you do this

    0 讨论(0)
  • 2021-01-18 06:52

    I have tried the following solution is working this morning! Please try it!

    The only solution here was that I went to Developer Portal, removed all profiles, then removed all downloaded profiles through Finder, did Clean project and Clean Build folder, closed and re-opened Xcode.

    Then I opened my project, went to both app and extension targets - at which point Xcode realized no profiles are present and thus goes to Developer Portal to get them. Since there’s nothing to download, it goes through each App ID you have on your account and creates development profile for each one.

    http://aplus.rs/2014/embedded-binary-is-not-signed-with-the-same-certificate-as-the-parent-app/

    0 讨论(0)
  • 2021-01-18 06:52

    What fixed this for me was:

    1. Re-Logging to my accounts in Preferences -> Accounts.

    2. Turning App Groups OFF in both (main app + keyboard extension) Targets (under Target -> Capabilities), then turning them back ON and re-selecting/re-checking the app groups.

    0 讨论(0)
  • 2021-01-18 06:52

    I had the same issue. This started on the day when my Certificate got expired after a year. Following steps worked for me:

    1. Delete the old expired certificate from Keychain(You will be able to see a red cross on the certificate icon)
    2. Restarting your mac
    0 讨论(0)
  • 2021-01-18 06:56

    For me it was not having the App Groups set up correctly on all my App IDs on the Developer Portal. Therefor the App Groups in the app didn't work correctly, causing this problem.

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