Lipo Error!! can't open input file

后端 未结 21 2041
北海茫月
北海茫月 2020-12-14 14:46

My application was working perfectly fine, then I started integrating SDK for push notification and stop the integration in between. I even deleted the SDK from my project a

相关标签:
21条回答
  • 2020-12-14 15:32

    i tried to re-select provisioning profile signing for both debug and release. this did fix the issue.

    0 讨论(0)
  • 2020-12-14 15:33

    This generally happens after changing the Deployment Targets in XCode and is easily solved by "Product > Clean" before attempting a Build.

    0 讨论(0)
  • 2020-12-14 15:34

    New potential answer for Swift: we isolated this error down to a single usage of the nil coalescing operator (??) in a category file. The operator is used elsewhere in our project without a problem, but in this specific file, removing it fixed the lipo error.

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