-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathMobFoxSDK_AdMobAdapter.podspec
More file actions
75 lines (48 loc) · 2.56 KB
/
MobFoxSDK_AdMobAdapter.podspec
File metadata and controls
75 lines (48 loc) · 2.56 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#
# Be sure to run `pod lib lint MobFoxSDK.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "MobFoxSDK_AdMobAdapter"
s.version = "3.6.1"
s.summary = "MobFox's iOS SDK"
wd = "Working Dir: %s" % [Dir.pwd]
puts wd
#puts ENV #$(PODS_ROOT)
#puts ENV['PODS_ROOT']
# This description is used to generate tags and improve search results.
# * Think: What does it do? Why did you write it? What is the focus?
# * Try to keep it short, snappy and to the point.
# * Write the description between the DESC delimiters below.
# * Finally, don't worry about the indent, CocoaPods strips it!
s.description = "MobFox's iOS SDK Used To Get Ads From The MobFox SSP"
s.homepage = "http://mobfox.com"
# s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Matomy/MobFox" => "itamar.n@matomy.com" }
s.source = { :git => 'https://github.com/mobfox/MobFox-iOS-SDK.git', :tag => "#{s.version}" }
#s.source = { :git => 'https://github.com/mobfox/MobFox-iOS-SDK.git', :commit => 'master' }
#s.source = { :git => 'https://github.com/mobfox/MobFox-iOS-SDK.git', :commit => 'dev' }
# s.social_media_url = 'https://twitter.com/<TWITTER_USERNAME>'
puts s.source
s.ios.deployment_target = '9.0'
s.static_framework = true
s.requires_arc = true
s.source_files = 'MobFoxSDKCore.embeddedframework/MobFoxSDKCore.framework/Headers/*.h','MATMoatMobileAppKit.framework/Headers/*.h'
s.ios.libraries = 'z'
s.ios.source_files = 'Adapters/AdMob/**/*.{h,m}'
# s.resource_bundles = {
# '${POD_NAME}' => ['${POD_NAME}/Assets/*.png']
# }
s.frameworks = 'MobFoxSDKCore', 'MATMoatMobileAppKit','AdSupport'
s.xcconfig = { 'FRAMEWORK_SEARCH_PATHS' => 'MobFoxSDK/**' }
s.public_header_files = 'MATMoatMobileAppKit.framework/Headers/*.h','MobFoxSDKCore.embeddedframework/MobFoxSDKCore.framework/Headers/*.h'
s.vendored_frameworks = 'MATMoatMobileAppKit.framework','MobFoxSDKCore.embeddedframework/MobFoxSDKCore.framework'
s.preserve_paths = 'MATMoatMobileAppKit.framework','MobFoxSDKCore.embeddedframework/MobFoxSDKCore.framework'
# s.ios.frameworks = 'CoreData', 'SystemConfiguration'
s.dependency 'Google-Mobile-Ads-SDK', '= 7.40.0'
#s.dependency 'mopub-ios-sdk', '5.0'
end