forked from Tealium/tealium-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTealiumIOS.podspec
29 lines (27 loc) · 1.42 KB
/
TealiumIOS.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
#
# Be sure to run `pod lib lint TealiumIOS.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.author = { "Craig Rouse" => "[email protected]" }
s.homepage = "https://github.com/tealium/tealium-ios"
s.documentation_url = 'http://tealium.github.io/tealium-ios/'
s.frameworks = 'SystemConfiguration'
s.license = { :type => "Commercial", :file => "LICENSE.txt" }
s.name = "TealiumIOS"
s.version = "5.8.2"
s.requires_arc = true
s.social_media_url = "https://twitter.com/tealium"
s.source = { :git => "https://github.com/tealium/tealium-ios.git", :tag => s.version.to_s }
s.summary = "Framework for adding Tealium services to an iOS application."
s.platform = :ios, '8.0'
s.vendored_frameworks = 'TealiumIOS.xcframework'
s.xcconfig = {'HEADER_SEARCH_PATHS' => '$(PODS_ROOT)/Headers/Public/TealiumIOS/TealiumIOS'}
# Workaround to exclude arm64 from simulator. If you are on an M1 Mac, please use the XCFrameworks
# that are uploaded to the latest release
s.pod_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64'}
s.user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64'}
end