-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTempoSDKAdapter.podspec
More file actions
29 lines (25 loc) · 1.36 KB
/
TempoSDKAdapter.podspec
File metadata and controls
29 lines (25 loc) · 1.36 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
#
# Run `pod lib lint TempoSDK.podspec' to validate the spec after any changes
#
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |spec|
spec.name = 'TempoSDKAdapter'
spec.version = '1.1.1'
spec.swift_version = '5.6.1'
spec.author = { 'Tempo Engineering' => 'development@tempoplatform.com' }
spec.license = { :type => 'MIT', :file => 'LICENSE' }
spec.homepage = 'https://github.com/Tempo-Platform/tempo-ios-unmediated'
spec.readme = 'https://github.com/Tempo-Platform/tempo-ios-unmediated/blob/main/README.md'
spec.source = { :git => 'https://github.com/Tempo-Platform/tempo-ios-unmediated.git', :tag => spec.version.to_s }
spec.summary = 'Unmediated iOS adapter for Tempo SDK to show payable ads'
spec.ios.deployment_target = '11.0'
spec.dependency 'TempoSDK', '1.8.5'
spec.source_files = 'tempo-ios-sdk-adapter/**/*.{h,m,swift}'
spec.resource_bundles = {
'tempo-ios-sdk-adapter' => ['tempo-ios-sdk-adapter/Resources/**/*']
}
spec.tvos.pod_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=appletvsimulator*]' => 'arm64', }
spec.tvos.user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=appletvsimulator*]' => 'arm64' }
spec.pod_target_xcconfig = { 'PRODUCT_BUNDLE_IDENTIFIER': 'com.tempoplatform.sdk-adapter' }
end