gpt4 book ai didi

swift - 使用 Cocoapods 依赖 objective-c 项目的 Linting swift 项目失败

转载 作者:可可西里 更新时间:2023-11-01 01:37:20 33 4
gpt4 key购买 nike

我在 swift 中创建了一个依赖于 Facebook SDK 的项目(它是用 objective-c 编写的,默认情况下作为源下载)。
当我用我的 mac 做这个项目时,一切都很好
我创建了以下 pod 文件:

# Uncomment this line to define a global platform for your project
platform :ios, '8.0'
# Uncomment this line if you're using Swift
use_frameworks!
target 'MyProj' do
pod 'FBSDKLoginKit', '~> 4.9'

end

运行 ** pod install** 我很高兴(Facebook 作为框架下载,所以我的代码中没有任何 obj-c 和 swift 的混合)。

现在我完成了我的项目并想将它上传到 Cocoapods,所以我创建了以下 podspec:

Pod::Spec.new do |s|
s.name = "MyProj"
s.version = '0.0.1'
s.platform = :ios, '8.0'
s.requires_arc = true
s.summary = "summery"
s.homepage = "<a href="https://www.google.com" rel="noreferrer noopener nofollow">https://www.google.com</a>"
s.license = 'Apache License, Version 2.0'
s.author = { "Asaf" => "asaf@a.b" }
s.source = { :git => '<a href="https://github.com/asaf.git" rel="noreferrer noopener nofollow">https://github.com/asaf.git</a>', :tag => '0.0.1'}
s.dependency 'FBSDKLoginKit', '~> 4.9'
s.source_files = 'Source/myfile.swift'<p></p>

<p>end
</p>

为了验证我的 pod 规范是否正确,我使用

pod spec lint mypodspec.podspec --use-libraries --verbose

但是我得到了

  • ERROR | [iOS] unknown: Encountered an unknown error (Pods written in Swift can only be integrated as frameworks; add use_frameworks! to your Podfile or target to opt into using it. The Swift Pod being used is: myProj) during validation.

有人知道我应该怎么做才能解决这个问题吗?谢谢

最佳答案

我自己找到了答案。
将 Cocoapods 更新到版本 1.0.0(目前处于测试阶段)并从 lint 命令中删除“--use-libraries”,解决了这个问题。

关于swift - 使用 Cocoapods 依赖 objective-c 项目的 Linting swift 项目失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35432766/

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