在Swift框架中缺少必需的模块

时间:2017-03-16 16:53:28

标签: ios swift xcode frameworks module-map

我构建了一个带有两个Objective-C类的swift框架。在我发布框架之后,它适用于我的环境。但是我把它导入了另一个环境,但它没有用。 “缺少需要模块......” 这是我的模块。

module RSAUtil [system] {
    header "RSAUtil.h"
    export *
}

module NetworkTool [system] {
    header "NetworkTool.h"
    export *
}

module openssl [system] {

    header "OpenSSL_Lib/include-ios/openssl/bio.h"
    header "OpenSSL_Lib/include-ios/openssl/opensslv.h"
    header "OpenSSL_Lib/include-ios/openssl/rsa.h"
    header "OpenSSL_Lib/include-ios/openssl/ssl.h"
    header "OpenSSL_Lib/include-ios/openssl/err.h"
    header "OpenSSL_Lib/include-ios/openssl/pem.h"

    export *
}

我尝试了很多解决方案但失败了。谁能帮我?感谢。

0 个答案:

没有答案