xcode - invalid bitcode

后端 未结 10 2179
时光取名叫无心
时光取名叫无心 2021-02-15 13:20

I\'m getting this error

error: Invalid bitcode signature

clang: error: linker command failed with exit code 1 (use -v to see invocation)

10条回答
  •  余生分开走
    2021-02-15 13:46

    error: Invalid bitcode signature clang: error: linker command failed with exit code 1 (use -v to see invocation)

    Note: If you are building for the target phone 9 or 10 the following solution solves the issue

    Solution

    1. Open Podfile
    2. Uncomment this line ~> platform :ios, '9.0'
    3. From the command line run the following command where Podfile resides
    4. pod update
    5. In the xcode select Product > clean and then Product > Build

    Hope this solves the problem

提交回复
热议问题