-
Notifications
You must be signed in to change notification settings - Fork 1
/
OnlineImagePicker.podspec
25 lines (21 loc) · 1.02 KB
/
OnlineImagePicker.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
Pod::Spec.new do |s|
s.name = "OnlineImagePicker"
s.version = "0.1.0"
s.summary = "An image picker for iOS that allows choosing images from online services like Facebook, Instagram and Flickr as well as from the photo library."
s.homepage = "https://github.com/dgileadi/OnlineImagePicker"
s.license = 'MIT'
s.author = { "David Gileadi" => "[email protected]" }
s.source = { :git => "https://github.com/dgileadi/OnlineImagePicker.git", :tag => s.version.to_s }
s.platform = :ios, '7.0'
s.requires_arc = true
s.source_files = 'OnlineImagePicker/**/*.{h,m}'
s.resource_bundles = { 'OnlineImagePicker' => ['OnlineImagePicker/Localization/*.lproj', 'OnlineImagePicker/Assets/*.png'] }
s.public_header_files = 'OnlineImagePicker/**/*.h'
s.frameworks = 'UIKit'
s.dependency 'Dropbox-iOS-SDK'
s.dependency 'Facebook-iOS-SDK'
s.dependency 'FlickrKit'
s.dependency 'InstagramKit'
s.dependency 'SDWebImage'
s.dependency 'M13ProgressSuite'
end