我正在尝试创建私人广告。
我做了什么: *在正确的分支机构创建并推送回购 *创建podspec
现在我正在努力进行podspec验证。
BKit.podspec
File[] subDirArray = file.listFiles(new FileFilter()
{
@Override
public boolean accept(File pathname)
{
return pathname.isDirectory();
}
});
致电Pod::Spec.new do |s|
s.name = 'BKit'
s.version = '0.1.0'
s.summary = 'This is for myown usage kit'
s.homepage = 'https://wdowikowski.pl'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Błażej Wdowikowski' => 'blazej@wdowikowski.pl' }
s.source = { :git => 'https://url.to.repo', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/the_dudi'
s.ios.deployment_target = '8.0'
s.source_files = 'BKit/Classes/**/*'
s.frameworks = 'UIKit'
s.dependency 'Cheetah'
s.dependency 'Decodable'
end
后,我
pod repo push BKit BKit.podspec --verbose
我不知道我做错了什么,我不确定应该看什么。
我正在使用 Cocoapods 1.0.1
答案 0 :(得分:2)
看起来你留在了repo URL的占位符中。
如果您pod spec lint --verbose
,您可以看到更详细的错误消息,说明规范失败的原因,例如fatal: unable to access 'https://url.to.repo/': Could not resolve host: url.to.repo
。希望有所帮助。