Authored by 刘金林

更改sdwebimage依赖方式

... ... @@ -17,6 +17,7 @@ Pod::Spec.new do |s|
s.author = { "John Tai" => "john_tai@hotmail.com" }
s.source = { :git => "http://git.yoho.cn/mobile/YH_EventReport.git", :tag => "#{s.version}" }
s.framework = "UIKit"
s.dependency = "SDWebImage"
s.requires_arc = true
s.platform = :ios
s.platform = :ios, "8.0"
... ...
# Uncomment the next line to define a global platform for your project
platform :ios, '8.0'
inhibit_all_warnings!
source 'http://git.yoho.cn/ios/YHPodSpecs.git'
source 'https://github.com/CocoaPods/Specs.git'
target 'YHEventReport' do
# Uncomment the next line if you're using Swift or would like to use dynamic frameworks
# use_frameworks!
pod 'SDWebImage', :git=> 'http://git.yoho.cn/ios/yh_sdwebimage.git', :branch => 'yh_dev_433_branch', :subspecs => [
'Core',
'GIF',
'WebP',
]
end
... ...