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

后端 未结 8 613
离开以前
离开以前 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:00

    This error might also crop up if you're unit testing. So in addition to what @Tony and @Allreadyhome has suggested, do the following:

    • With your test target selected, go to 'Build Settings'
    • Search for 'iOS Deployment target' at the top search bar.
    • Change the value for the iOS Deployment Target accordingly, (in the context of this question, you will change the deployment target to 8.0)

    And you should be good.

提交回复
热议问题