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

前端 未结 13 1344
旧巷少年郎
旧巷少年郎 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:38

    The embedded binary is referring to a widget that you are deploying alongside with your app.

    In your case, you are not signing your widget with any Signing Identity (since your error says "Not Code Signed").

    To resolve this, go to your Project file, find your widget's target, and under the Build Setting tab, find the Code Signing Identity value. Choose the same code signing identity that you are using for your main app's target.

    You will also need to create and configure a provisioning profile specifically for your widget when you want to release it.

提交回复
热议问题