-
Notifications
You must be signed in to change notification settings - Fork 10
/
JXVideoAds.podspec
48 lines (33 loc) · 1.71 KB
/
JXVideoAds.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
Pod::Spec.new do |s|
s.name = 'JXVideoAds'
s.version = '0.1.1'
s.summary = 'JXVideoAds offers video advertising'
s.description = 'JXVideoAds supports playback progress acquisition, volume control, playback control and so on'
s.homepage = 'https://github.com/Code-TanJX/googleads-ima-JXAVideoAds'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Code-TanJX' => '[email protected]' }
s.source = { :git => 'https://github.com/Code-TanJX/googleads-ima-JXAVideoAds.git', :tag => s.version.to_s }
s.ios.deployment_target = '8.0'
if ENV['IS_FRAMEWORK']
s.source_files = 'JXVideoAds/Classes/**/*.h'
s.vendored_frameworks = 'JXVideoAds/Library/JXVideoAds.framework'
s.dependency 'GoogleAds-IMA-iOS-SDK'
else
s.subspec 'API' do |api|
api.source_files = 'JXVideoAds/Classes/API/**/*'
api.public_header_files = 'JXVideoAds/Classes/API/**/*.h'
api.dependency 'JXVideoAds/Common'
api.dependency 'JXVideoAds/GoogleIma'
end
s.subspec 'Common' do |common|
common.source_files = 'JXVideoAds/Classes/Common/**/*'
common.public_header_files = 'JXVideoAds/Classes/Common/**/*.h'
common.dependency 'JXVideoAds/GoogleIma'
end
s.subspec 'GoogleIma' do |googleIma|
googleIma.source_files = 'JXVideoAds/Classes/GoogleIma/**/*'
googleIma.public_header_files = 'JXVideoAds/Classes/GoogleIma/**/*.h'
googleIma.dependency 'GoogleAds-IMA-iOS-SDK'
end
end
end