Skip to content

Instantly share code, notes, and snippets.

@ewangke
Created April 18, 2013 09:04
Show Gist options
  • Save ewangke/5411336 to your computer and use it in GitHub Desktop.
Save ewangke/5411336 to your computer and use it in GitHub Desktop.
Advanced CocoaPods - Local Dependency
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