Podfile 527 B

12345678910111213141516171819202122232425
  1. source 'https://github.com/CocoaPods/Specs.git'
  2. use_frameworks!
  3. project 'SDWebImage Demo'
  4. workspace '../SDWebImage'
  5. pod 'SDWebImage/Core', :path => '../'
  6. pod 'SDWebImageWebPCoder', :git => 'https://github.com/SDWebImage/SDWebImageWebPCoder.git', :branch => 'master'
  7. target 'SDWebImage iOS Demo' do
  8. platform :ios, '8.0'
  9. end
  10. target 'SDWebImage OSX Demo' do
  11. platform :osx, '10.10'
  12. end
  13. target 'SDWebImage TV Demo' do
  14. platform :tvos, '9.2'
  15. end
  16. target 'SDWebImage Watch Demo Extension' do
  17. platform :watchos, '2.0'
  18. end