Module compiled with Swift 5.0.1 cannot be imported by the Swift 5.1 compiler

后端 未结 8 1011
灰色年华
灰色年华 2020-12-18 17:58

I have a VoiceSampler.framework that was built with Xcode 10.3

I am trying to use that framework in Xcode11 in a new project. I have successfully added that framewor

8条回答
  •  暖寄归人
    2020-12-18 18:21

    I was getting a similar problem for Sqlite.swift. Doing the following command worked for me:

    carthage update --platform iOS --no-use-binaries
    

    This was suggested here.

提交回复
热议问题