-
Notifications
You must be signed in to change notification settings - Fork 208
/
SwiftyDropboxObjC.podspec
28 lines (22 loc) · 1.08 KB
/
SwiftyDropboxObjC.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
27
28
Pod::Spec.new do |s|
s.name = 'SwiftyDropboxObjC'
s.version = '10.1.0'
s.summary = 'Objective-C Wrapper for Dropbox Swift SDK for API v2'
s.homepage = 'https://dropbox.com/developers/'
s.license = 'MIT'
s.author = { 'Stephen Cobbe' => 'scobbe@dropbox.com' }
s.source = { :git => 'https://github.com/dropbox/SwiftyDropbox.git', :tag => s.version }
s.source_files = 'Source/SwiftyDropboxObjC/Shared/**/*.{swift,h,m}'
s.osx.source_files = 'Source/SwiftyDropboxObjC/Platform/SwiftyDropbox_macOS/**/*.{swift,h,m}'
s.ios.source_files = 'Source/SwiftyDropboxObjC/Platform/SwiftyDropbox_iOS/**/*.{swift,h,m}'
s.resource_bundles = {
'SwiftyDropboxObjCPrivacyInfo' => ['Source/SwiftyDropboxObjC/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'
s.dependency 'SwiftyDropbox', '~> 10.1.0'
end