gpt4 book ai didi

swift - podspec 中框架的 CommonCrypto

转载 作者:行者123 更新时间:2023-11-28 06:00:22 25 4
gpt4 key购买 nike

我对如何让这个 podspec 起作用感到很生气。

我正在开发一个 swift 框架,需要 CommonCrypto。在使其适用于每个团队(Cordova、React)的许多问题之后,这就是 CommonCrypto 的实现方式:

我在其构建阶段获得了一个带有运行脚本的聚合 objective-c ommonCryptoModuleMap :

if [ -d "${BUILT_PRODUCTS_DIR}/CommonCryptoModuleMap" ]; then
echo "${BUILT_PRODUCTS_DIR}/CommonCryptoModuleMap directory already exists, so skipping the rest of the script."
exit 0
fi

mkdir -p "${BUILT_PRODUCTS_DIR}/CommonCryptoModuleMap"
cat <<EOF > "${BUILT_PRODUCTS_DIR}/CommonCryptoModuleMap/module.modulemap"
module CommonCrypto [system] {
header "${SDKROOT}/usr/include/CommonCrypto/CommonCrypto.h"
export *
}
EOF

但现在,目标是将其实现为 Swift 中另一个框架的依赖。所以我必须在 podspec 中指定目标依赖项。

我从 Xcode 构建或归档它没有问题。

这是我的 Podspec:

Pod::Spec.new do |s|
s.name = "AFrameworkHasNoName"
s.version = "0.1.5"
s.summary = "Foo bar"
s.homepage = "https://github.com/MyRepository_ios"
s.license = "License"
s.author = { "Veesla" => "valentin.cousien@gmail.com" }
s.source = { :git => "git@github.com:MyRepository_ios.git", :tag => "develop" }
s.swift_version = "4.0"
s.platform = :ios, "8.0"
s.requires_arc = true
s.exclude_files = "AFrameworkHasNoNameTests/*"
s.source_files = "AFrameworkHasNoName/**/*.{h,m,swift}"
s.module_name = "AFrameworkHasNoName"
end

这里是错误:

- WARN  | source: The version should be included in the Git tag.
- WARN | source: Git SSH URLs will NOT work for people behind firewalls configured to only allow HTTP, therefore HTTPS is preferred.
- WARN | url: The URL (https://github.com/MyRepository_ios) is not reachable.
- WARN | [iOS] license: Unable to find a license file
- ERROR | [iOS] xcodebuild: Returned an unsuccessful exit code. You can use `--verbose` for more information.
- ERROR | [iOS] xcodebuild: MyFileImportingCommonCrypto.swift:10:8: error: no such module 'CommonCrypto'

感谢您的回复

最佳答案

没关系,似乎我不是唯一未能在另一个 SDK 中包含 CommonCrypto 的人。

我只是通过包含 CryptoSwift(仅使用纯 Swift)来绕过这个问题。它非常适合我。它有点重,但您不必处理 modulemap 文件和 C 库......非常容易使用,实现很好

这里是 CryptoSwift 的链接:https://github.com/krzyzanowskim/CryptoSwift

希望对你们有帮助!

PS:谁能解释一下为什么我被否决了? :(

关于swift - podspec 中框架的 CommonCrypto,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50022096/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com