forked from amplitude/skylab-ios-client
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathAmplitudeSkylab.podspec
29 lines (20 loc) · 1008 Bytes
/
AmplitudeSkylab.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
skylab_version = "1.2.5" # Version is managed automatically by semantic-release, please dont change it manually
Pod::Spec.new do |spec|
spec.name = "AmplitudeSkylab"
spec.version = skylab_version
spec.summary = "Skylab SDK"
spec.license = { :type => "MIT" }
spec.author = { "Amplitude" => "[email protected]" }
spec.homepage = "https://amplitude.com"
spec.source = { :git => "https://github.com/amplitude/skylab-ios-client.git", :tag => "v#{spec.version}" }
spec.swift_version = '5.0'
spec.ios.deployment_target = '10.0'
spec.ios.source_files = 'Sources/Skylab/**/*.{h,swift}'
spec.osx.deployment_target = '10.10'
spec.osx.source_files = 'sources/skylab/**/*.{h,swift}'
spec.tvos.deployment_target = '9.0'
spec.tvos.source_files = 'sources/skylab/**/*.{h,swift}'
spec.watchos.deployment_target = '3.0'
spec.watchos.source_files = 'sources/skylab/**/*.{h,swift}'
spec.dependency 'Amplitude'
end