我构建了一个带有两个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 *
}
我尝试了很多解决方案但失败了。谁能帮我?感谢。