Last active
December 30, 2015 20:59
-
-
Save trawor/7884802 to your computer and use it in GitHub Desktop.
AVOSCloud-Beta.podspec
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Pod::Spec.new do |s| | |
s.version = "999.99" | |
s.source = { :http => "https://download.avoscloud.com/sdk/iOS/release-beta/AVOSCloud.framework.zip"} | |
s.platform = :ios, '5.0' | |
s.name = "AVOSCloud" | |
s.summary = "AVOS Cloud iOS SDK for mobile backend." | |
s.homepage = "http://avoscloud.com" | |
s.license = { :type => 'Commercial', :text => 'See https://cn.avoscloud.com/terms.html' } | |
s.author = { "Travis" => "[email protected]" } | |
s.requires_arc = true | |
s.preserve_paths = "iOS/release-beta/*" | |
s.vendored_frameworks = "iOS/release-beta/AVOSCloud.framework" | |
s.public_header_files = "iOS/release-beta/**/*.h" | |
s.frameworks = 'CFNetwork', 'SystemConfiguration', 'MobileCoreServices', 'CoreTelephony', 'CoreLocation', 'CoreGraphics', 'Security', 'QuartzCore' | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment