forked from mobfox/MFX-iOS-SDK
-
Notifications
You must be signed in to change notification settings - Fork 1
/
MFXSDK_MoPub.podspec
63 lines (46 loc) · 2.13 KB
/
MFXSDK_MoPub.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#
# Be sure to run `pod lib lint MFXSDK.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 = "MFXSDK_MoPub"
s.version = "4.2.2"
s.summary = "MobFox's iOS MopPub Adapter"
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 = "https://www.mobfox.com/"
# s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "MobFox" => "[email protected]" }
s.source = { :git => 'https://github.com/mobfox/MFX-iOS-SDK.git', :tag => "#{s.version}" }
puts s.source
s.ios.deployment_target = '9.0'
s.static_framework = true
s.requires_arc = true
#s.source_files = 'MFXSDKCore.embeddedframework/MFXSDKCore.framework/Headers/*.h'
s.ios.libraries = 'z'
s.source_files = 'Adapters/MoPub/**/*.{h,m}'
#s.ios.source_files = 'Adapters/MoPub/**/*.{h,m}'
# s.resource_bundles = {
# '${POD_NAME}' => ['${POD_NAME}/Assets/*.png']
# }
# s.frameworks = 'AdSupport'
# s.xcconfig = { 'FRAMEWORK_SEARCH_PATHS' => 'MFXSDKCore/**' }
#s.public_header_files = 'MFXSDKCore.embeddedframework/MFXSDKCore.framework/Headers/*.h', 'Adapters/MoPub/*.h'
#s.vendored_frameworks = 'MFXSDKCore.embeddedframework/MFXSDKCore.framework'
#s.preserve_paths = 'MFXSDKCore.embeddedframework/MFXSDKCore.framework'
#s.ios.frameworks = 'CoreData', 'SystemConfiguration'
s.dependency 'MFXSDK', "#{s.version}"
s.dependency 'mopub-ios-sdk', '~> 5.5'
end