-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathSkyflow.podspec
More file actions
33 lines (17 loc) · 912 Bytes
/
Copy pathSkyflow.podspec
File metadata and controls
33 lines (17 loc) · 912 Bytes
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
33
Pod::Spec.new do |spec|
spec.name = "Skyflow"
spec.version = "1.26.0"
spec.summary = "skyflow-iOS"
spec.description = "Skyflow iOS SDK"
spec.homepage = "https://github.com/skyflowapi/skyflow-iOS.git"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.author = { "Skyflow" => "service-ops@skyflow.com" }
spec.swift_version = '5.9'
spec.platform = :ios, "13.0"
spec.ios.deployment_target = "13.0"
spec.source = { :git => "https://github.com/skyflowapi/skyflow-iOS.git", :tag => "1.26.0" }
spec.source_files = "SkyflowCore/Sources/**/*.{swift}", "Skyflow/Sources/**/*.{swift}"
spec.exclude_files = "Skyflow/Sources/Exports.swift"
spec.pod_target_xcconfig = { 'OTHER_SWIFT_FLAGS' => '-package-name skyflow_ios_sdk' }
spec.resource_bundles = {'Skyflow' => ['SkyflowCore/Sources/Resources/**/*.{xcassets}'] }
end