-
Notifications
You must be signed in to change notification settings - Fork 12
/
ConfigCat.podspec
executable file
·26 lines (21 loc) · 1.37 KB
/
ConfigCat.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
Pod::Spec.new do |spec|
spec.name = "ConfigCat"
spec.version = "11.2.0"
spec.summary = "ConfigCat Swift SDK"
spec.swift_version = "5.0"
spec.description = "Feature Flags created by developers for developers with ❤️. ConfigCat lets you manage feature flags across frontend, backend, mobile, and desktop apps without (re)deploying code. % rollouts, user targeting, segmentation. Feature toggle SDKs for all main languages. Alternative to LaunchDarkly. Host yourself, or use the hosted management app at https://configcat.com."
spec.homepage = "https://github.com/configcat/swift-sdk"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.author = { "ConfigCat" => "[email protected]" }
spec.ios.deployment_target = "12.0"
spec.watchos.deployment_target = "4.0"
spec.tvos.deployment_target = "12.0"
spec.osx.deployment_target = "10.13"
spec.visionos.deployment_target = "1.0"
spec.source = { :git => "https://github.com/configcat/swift-sdk.git", :tag => spec.version }
spec.source_files = "Sources/ConfigCat/*.swift", "Sources/Version/*.swift"
spec.resource_bundles = { 'ConfigCat' => 'Sources/ConfigCat/Resources/PrivacyInfo.xcprivacy' }
spec.requires_arc = true
spec.module_name = "ConfigCat"
spec.documentation_url = "https://configcat.com/docs/sdk-reference/ios"
end