forked from amplitude/AmplitudeUnified-Swift
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAmplitudeUnified.podspec
More file actions
28 lines (22 loc) · 1.21 KB
/
Copy pathAmplitudeUnified.podspec
File metadata and controls
28 lines (22 loc) · 1.21 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
amplitude_unified_version = "0.0.2" # Version is managed automatically by semantic-release, please don't change it manually
Pod::Spec.new do |s|
s.name = "AmplitudeUnified"
s.version = amplitude_unified_version
s.summary = "Amplitude Unified SDK"
s.homepage = "https://amplitude.com"
s.license = { :type => "MIT" }
s.author = { "Amplitude" => "dev@amplitude.com" }
s.source = { :git => "https://github.com/amplitude/AmplitudeUnified-Swift.git", :tag => "v#{s.version}" }
s.source_files = 'Sources/AmplitudeUnified/**/*.{h,swift}'
s.resource_bundle = { 'AmplitudeUnified': ['Sources/AmplitudeUnified/PrivacyInfo.xcprivacy'] }
s.swift_version = '5.9'
s.ios.deployment_target = '13.0'
s.tvos.deployment_target = '13.0'
s.osx.deployment_target = '10.15'
s.watchos.deployment_target = '7.0'
s.visionos.deployment_target = '1.0'
s.dependency 'AmplitudeExperiment', '>= 1.18.1', '< 2.0.0'
s.dependency 'AmplitudeSwift', '>= 1.13.4', '< 2.0.0'
s.ios.dependency 'AmplitudeSessionReplay', '>= 0.4.3', '< 2.0.0'
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES' }
end