-
Notifications
You must be signed in to change notification settings - Fork 30
/
OptimizelySwiftSDK.podspec
23 lines (23 loc) · 1.17 KB
/
OptimizelySwiftSDK.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = "OptimizelySwiftSDK"
s.module_name = "Optimizely"
s.version = "5.0.0"
s.summary = "Optimizely experiment framework for iOS/tvOS/watchOS"
s.homepage = "https://docs.developers.optimizely.com/experimentation/v4.0.0-full-stack/docs"
s.license = { :type => "Apache License, Version 2.0", :file => "LICENSE" }
s.author = { "Optimizely" => "[email protected]" }
s.ios.deployment_target = "10.0"
s.tvos.deployment_target = "10.0"
s.osx.deployment_target = "10.14"
s.watchos.deployment_target = "3.0"
s.source = {
:git => "https://github.com/optimizely/swift-sdk.git",
:tag => "v"+s.version.to_s
}
s.source_files = "Sources/**/*.swift"
s.resource_bundles = { 'OptimizelySwiftSDK' => ['Sources/Supporting Files/PrivacyInfo.xcprivacy'] }
s.swift_version = ["5.0", "5.1"]
s.framework = "Foundation"
s.requires_arc = true
s.xcconfig = { 'GCC_PREPROCESSOR_DEFINITIONS' => "OPTIMIZELY_SDK_VERSION=@\\\"#{s.version}\\\"" }
end