-
Notifications
You must be signed in to change notification settings - Fork 206
/
Copy pathSwiftyDropbox.podspec
26 lines (21 loc) · 1014 Bytes
/
SwiftyDropbox.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 |s|
s.name = 'SwiftyDropbox'
s.version = '10.2.0'
s.summary = 'Dropbox Swift SDK for API v2'
s.homepage = 'https://dropbox.com/developers/'
s.license = 'MIT'
s.author = { 'Stephen Cobbe' => '[email protected]' }
s.source = { :git => 'https://github.com/dropbox/SwiftyDropbox.git', :tag => s.version }
s.source_files = 'Source/SwiftyDropbox/Shared/**/*.{swift,h,m}'
s.osx.source_files = 'Source/SwiftyDropbox/Platform/SwiftyDropbox_macOS/**/*.{swift,h,m}'
s.ios.source_files = 'Source/SwiftyDropbox/Platform/SwiftyDropbox_iOS/**/*.{swift,h,m}'
s.resource_bundles = {
'SwiftyDropboxPrivacyInfo' => ['Source/SwiftyDropbox/PrivacyInfo.xcprivacy'],
}
s.requires_arc = true
s.swift_version = '5.6'
s.osx.deployment_target = '10.13'
s.ios.deployment_target = '12.0'
s.osx.frameworks = 'AppKit', 'WebKit', 'SystemConfiguration', 'Foundation'
s.ios.frameworks = 'UIKit', 'WebKit', 'SystemConfiguration', 'Foundation'
end