21 lines
914 B
Ruby
21 lines
914 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = 'AdMob'
|
|
s.version = '6.0.3'
|
|
s.license = 'Commercial'
|
|
s.summary = 'The Google AdMob Ads SDK.'
|
|
s.homepage = 'https://developers.google.com/mobile-ads-sdk/download'
|
|
s.author = 'Google'
|
|
s.source = { :git => 'https://github.com/larsacus/GoogleAds.git', :tag => '6.0.3' }
|
|
s.description = %{
|
|
The Google AdMob Ads SDK is the next generation in Google mobile advertising featuring refined ad formats and streamlined APIs for access to Google's AdMob and DoubleClick For Publishers (upgraded DFP) [Android and iOS only] mobile advertising solutions.
|
|
}
|
|
|
|
s.platform = :ios
|
|
s.source_files = '**/*.h'
|
|
s.preserve_paths = 'libGoogleAdMobAds.a'
|
|
s.library = 'GoogleAdMobAds'
|
|
s.frameworks = 'AudioToolbox', 'MessageUI', 'SystemConfiguration', 'CoreGraphics'
|
|
s.xcconfig = { 'LIBRARY_SEARCH_PATHS' => '$(PODS_ROOT)/AdMob' }
|
|
|
|
end
|