-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKochavaAdNetworkiOS.podspec
54 lines (42 loc) · 2.34 KB
/
KochavaAdNetworkiOS.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
#
# Be sure to run `pod lib lint KochavaAdNetworkiOS.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 http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'KochavaAdNetworkiOS'
s.version = '5.1.1'
s.summary = 'The KochavaAdNetwork module of the KochavaTracker iOS SDK.'
# 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 = <<-DESC
The KochavaAdNetwork module is an optional module within the Kochava SDK providing advertising network support, and is a high-level interface to Apple's SKAdNetwork.
DESC
s.homepage = 'http://www.kochava.com'
# s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
s.license = { :type => 'Commercial', :file => 'LICENSE' }
s.author = { 'Kochava' => '[email protected]' }
s.source = { :git => 'https://github.com/Kochava/kochava-adnetwork-ios-cocoapod.git', :tag => s.version.to_s }
# s.social_media_url = 'https://twitter.com/<TWITTER_USERNAME>'
s.ios.deployment_target = '10.3'
s.source_files = 'KochavaAdNetworkiOS/Classes/**/*'
# s.resource_bundles = {
# 'KochavaAdNetworkiOS' => ['KochavaAdNetworkiOS/Assets/*.png']
# }
s.public_header_files = 'KochavaAdNetworkiOS/Classes/**/*.h'
s.frameworks = 'Foundation'
s.dependency 'KochavaTrackeriOS', '~> 5.1.1'
s.platform = :ios, '10.3'
s.vendored_library = 'KochavaAdNetworkiOS/Libraries/libKochavaAdNetworkiOS.a'
s.preserve_path = 'KochavaAdNetworkiOS/Libraries/libKochavaAdNetworkiOS.a'
# s.library = 'KochavaAdNetworkiOS'
s.swift_versions = '5.0'
# Xcode 12 Bug Fix: https://github.com/CocoaPods/CocoaPods/issues/10065#issuecomment-694268918
s.pod_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
s.user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
end