-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathGrowthBook-IOS.podspec
24 lines (19 loc) · 1.13 KB
/
GrowthBook-IOS.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
Pod::Spec.new do |spec|
spec.name = 'GrowthBook-IOS'
spec.version = ENV['LIB_VERSION']
spec.homepage = 'https://github.com/growthbook/growthbook-swift'
spec.documentation_url = 'https://docs.growthbook.io'
spec.license = 'https://opensource.org/licenses/MIT'
spec.author = { 'KevychSolutions' => '[email protected]' }
spec.summary = 'Powerful A/B testing SDK for Swift - iOS'
spec.source = { :http => "https://github.com/growthbook/growthbook-swift/releases/download/" + ENV['LIB_VERSION'] + "/GrowthBook.xcframework.zip" }
spec.vendored_frameworks = "build/GrowthBook.xcframework"
spec.swift_version = ['5.0', '5.1', '5.2']
spec.ios.deployment_target = '12.0'
spec.watchos.deployment_target = '5.0'
spec.tvos.deployment_target = '12.0'
spec.osx.deployment_target = '10.15'
spec.visionos.deployment_target = '1.0'
spec.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES' }
spec.swift_version = '5.2'
end