error: module file's minimum deployment target is ios8.3 v8.3

后端 未结 8 615
离开以前
离开以前 2020-12-05 01:35

All attempts to import a dynamic framework in an Xcode playground yield the following error:

error: module file\'s minimum deployment target is ios8.3 v8.3
<         


        
相关标签:
8条回答
  • 2020-12-05 02:17

    You might have created a target after updating Xcode, which made 8.3 the iOS Deployment Target in Build Settings for that target.

    I fixed this by:

    1. Setting the iOS Deployment Target to 8.0 (Which is the same as the rest of the project)

    Note iOS version mismatch in this screenshot (one is 10.0, other is 9.3)

    Note iOS versions now match (make sure they all match)

    1. Doing a clean (Command+Shift+k) and build

    If a clean+build doesn't fix it, switching the device/simulator that you are deploying to from the scheme menu and building again should help.

    0 讨论(0)
  • 2020-12-05 02:20

    In your Pod File, just delete the comment at this line:

    platform :ios, '8.0'
    

    It work for me.

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