-
Notifications
You must be signed in to change notification settings - Fork 13
/
AnalyticsConnector.podspec
32 lines (22 loc) · 1.3 KB
/
AnalyticsConnector.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
analytics_connector_version = "1.3.0" # Version is managed automatically by semantic-release, please dont change it manually
Pod::Spec.new do |spec|
spec.name = "AnalyticsConnector"
spec.version = analytics_connector_version
spec.summary = "Connector library for seamless integration between Amplitude Analytics and Experiment SDKs"
spec.license = { :type => "MIT" }
spec.author = { "Amplitude" => "[email protected]" }
spec.homepage = "https://amplitude.com"
spec.source = { :git => "https://github.com/amplitude/analytics-connector-ios.git", :tag => "v#{spec.version}" }
spec.swift_version = '5.0'
spec.ios.deployment_target = '10.0'
spec.ios.source_files = 'Sources/AnalyticsConnector/**/*.{h,swift}'
spec.osx.deployment_target = '10.13'
spec.osx.source_files = 'sources/AnalyticsConnector/**/*.{h,swift}'
spec.tvos.deployment_target = '9.0'
spec.tvos.source_files = 'sources/AnalyticsConnector/**/*.{h,swift}'
spec.watchos.deployment_target = '3.0'
spec.watchos.source_files = 'sources/AnalyticsConnector/**/*.{h,swift}'
spec.visionos.deployment_target = '1.0'
spec.visionos.source_files = 'sources/AnalyticsConnector/**/*.{h,swift}'
spec.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES' }
end