forked from amplitude/experiment-ios-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AmplitudeExperiment.podspec
31 lines (21 loc) · 1.11 KB
/
AmplitudeExperiment.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
experiment_version = "1.13.0" # Version is managed automatically by semantic-release, please dont change it manually
Pod::Spec.new do |spec|
spec.name = "AmplitudeExperiment"
spec.version = experiment_version
spec.summary = "Amplitude Experiment SDK"
spec.license = { :type => "MIT" }
spec.author = { "Amplitude" => "[email protected]" }
spec.homepage = "https://amplitude.com"
spec.source = { :git => "https://github.com/amplitude/experiment-ios-client.git", :tag => "v#{spec.version}" }
spec.swift_version = '5.0'
spec.ios.deployment_target = '10.0'
spec.ios.source_files = 'Sources/Experiment/**/*.{h,swift}'
spec.osx.deployment_target = '10.13'
spec.osx.source_files = 'sources/Experiment/**/*.{h,swift}'
spec.tvos.deployment_target = '10.0'
spec.tvos.source_files = 'sources/Experiment/**/*.{h,swift}'
spec.watchos.deployment_target = '3.0'
spec.watchos.source_files = 'sources/Experiment/**/*.{h,swift}'
spec.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES' }
spec.dependency 'AnalyticsConnector', '~> 1.0'
end