-
Notifications
You must be signed in to change notification settings - Fork 58
/
CJPAdController.podspec
32 lines (30 loc) · 1.4 KB
/
CJPAdController.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
Pod::Spec.new do |s|
s.name = 'CJPAdController'
s.version = '1.7.1'
s.summary = 'A simple, easy way to add iAd and AdMob ads to a view controller.'
s.description = <<-DESC
CJPAdController is a singleton class allowing easy implementation of iAd and AdMob ads in your iOS app. It supports all devices and orientations.
* Choose which one serves as your default ads, and the other will show whenever an ad is not available.
* Option to display the ads at the top or the bottom of your views.
* Automatically hides from view when there are no ads to display.
* Support for removing ads permanently, for example if you have set up an in-app purchase to remove them.
DESC
s.screenshots = ['http://i.imgur.com/dxUHvLK.png', 'http://i.imgur.com/rvdpr2Z.png']
s.license = 'MIT'
s.homepage = 'http://chrisphillips.co.uk'
s.author = { 'Chris Phillips' => '[email protected]' }
s.social_media_url = 'http://twitter.com/ChrisJP88'
s.platform = :ios, '6.0'
s.source = {
:git => 'https://github.com/chrisjp/CJPAdController.git',
:tag => s.version.to_s
}
s.source_files = 'CJPAdController/*.{h,m}'
s.frameworks = 'iAd', 'AdSupport'
s.requires_arc = true
s.dependency 'Google-Mobile-Ads-SDK', '~> 7.5'
s.pod_target_xcconfig = {
'FRAMEWORK_SEARCH_PATHS' => '$(PODS_ROOT)/Google-Mobile-Ads-SDK/**',
'CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES' => 'YES'
}
end