iOS error “Embedded binary is not signed with the same certificate as the parent app”

前端 未结 13 1380
旧巷少年郎
旧巷少年郎 2020-12-01 10:36

Those are my first steps in IOS applications development and I\'m facing some problem that I can\'t figure out.

error: Embedded binary is not signed with the         


        
13条回答
  •  悲&欢浪女
    2020-12-01 10:51

    This error is also shown when deployment target of your Today extension is newer than the parent app. They must be the same.

    I have iOS app set to 10.0 and added Today extension which was automatically set to 11.4 as the latest. This caused the error to appear. Simply changing the Deployment target of the extension target to 10.0 resolved the issue.

提交回复
热议问题