我在swift中创建了一个依赖于Facebook SDK的项目(在目标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 = "https://www.google.com"
s.license = 'Apache License, Version 2.0'
s.author = { "Asaf" => "asaf@a.b" }
s.source = { :git => 'https://github.com/asaf.git', :tag => '0.0.1'}
s.dependency 'FBSDKLoginKit', '~> 4.9'
s.source_files = 'Source/myfile.swift'
end
要验证我的pod规范是否正确,请使用
进行删除pod spec lint mypodspec.podspec --use-libraries --verbose
但我正在
- 错误| [iOS]未知:遇到未知错误(用Swift编写的Pod只能作为框架集成;将
use_frameworks!
添加到您的Podfile或目标以选择使用它。验证期间使用的Swift Pod是:myProj)。
任何人都知道我该怎么做才能解决这个问题? 谢谢
答案 0 :(得分:2)
我找到了自己的答案 将Cocoapods更新到1.0.0版(目前处于测试版)并删除" - use-libraries"从lint命令,解决了这个问题。