Created
April 18, 2013 09:04
-
-
Save ewangke/5411336 to your computer and use it in GitHub Desktop.
Advanced CocoaPods - Local Dependency
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 = 'ChartboostSDK' | |
s.version = '3.1.1' | |
s.license = 'Commercial' | |
s.summary = 'ChartboostSDK for showing ads and more apps pages, and tracking analytics and in-app purchase revenue.' | |
s.homepage = 'https://chartboost.com/' | |
s.author = { 'Chartboost' => 'https://chartboost.com/' } | |
s.source = { :git => '~/Desktop/ChartboostSDK' } | |
s.platform = :ios | |
s.source_files = '**/*.h' | |
s.preserve_paths = '**/*.a' | |
s.library = 'Chartboost' | |
s.xcconfig = { 'LIBRARY_SEARCH_PATHS' => '"$(PODS_ROOT)/ChartboostSDK/Chartboost"' } | |
s.weak_frameworks = 'AdSupport', 'StoreKit' | |
s.frameworks = 'QuartzCore', 'SystemConfiguration', 'CoreGraphics' | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment