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

后端 未结 8 631
离开以前
离开以前 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条回答
  •  猫巷女王i
    2020-12-05 02:16

    I've encountered error:

    Module file's minimum deployment target is ios9.2 v9.2
    

    After I changed the iOS deployment target to 8.0 for my PROJECT. The project is created by Xcode 7.2, with 'Include Unit Tests' and 'Include UI Tests' checked.

    Because of the XCUIApplication() requires iOS 9.0+, to fix the error, just change the deployment target of UI Tests to 9.0 or above, and leaves 8.0 for other targets.

提交回复
热议问题