Created
November 4, 2016 15:05
-
-
Save ttahmouch/f8f5a31a85badefc5862c6728ecc54de to your computer and use it in GitHub Desktop.
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.name = "phonegap-plugin-contentsync" | |
s.version = "1.2.5.cocoapods" | |
s.summary = "Download and cache remotely hosted content." | |
s.description = "Download and cache remotely hosted zipped content bundles, unzipping automatically." | |
s.homepage = "https://github.com/phonegap/phonegap-plugin-contentsync" | |
s.author = "Adobe PhoneGap Team" | |
s.license = "Apache License, Version 2.0" | |
s.platform = :ios | |
s.source = { :git => "https://github.com/ttahmouch/phonegap-plugin-contentsync.git", :tag => "#{s.version}" } | |
s.source_files = "src/ios/ContentSync.{h,m}" | |
s.preserve_paths = "*.md", "www/*.js" | |
s.frameworks = "Foundation", "MobileCoreServices" | |
s.dependency "Cordova", ">= 4.0.1" | |
s.dependency "SSZipArchive", "1.6.2" | |
s.pod_target_xcconfig = { "OTHER_CFLAGS" => "-DUSE_COCOAPODS=1" } | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment