forked from box/box-ios-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBoxSDK.podspec
More file actions
21 lines (19 loc) · 825 Bytes
/
BoxSDK.podspec
File metadata and controls
21 lines (19 loc) · 825 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |spec|
spec.name = 'BoxSDK'
spec.version = '6.9.0'
spec.summary = 'Box Swift SDK'
spec.homepage = 'https://github.com/box/box-ios-sdk'
spec.license = 'Apache License, Version 2.0'
spec.author = { 'Box' => 'sdks@box.com' }
spec.osx.deployment_target = '10.15'
spec.ios.deployment_target = '13.0'
spec.tvos.deployment_target = '13.0'
spec.watchos.deployment_target = '6.0'
spec.visionos.deployment_target = '1.0'
spec.source = { :git => 'https://github.com/box/box-ios-sdk.git', :tag => spec.version.to_s }
spec.swift_versions = ['5']
spec.requires_arc = true
spec.dependency "BoxSdkGen", spec.version.to_s
spec.source_files = 'BoxSDK/Sources/**/*.swift'
spec.resource_bundle = {"BoxSDK" => "BoxSDK/Sources/PrivacyInfo.xcprivacy"}
end