-
Notifications
You must be signed in to change notification settings - Fork 117
/
ObjectiveDropboxOfficial.podspec
29 lines (23 loc) · 1.43 KB
/
ObjectiveDropboxOfficial.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
29
Pod::Spec.new do |s|
s.name = 'ObjectiveDropboxOfficial'
s.version = '7.4.1'
s.summary = 'Dropbox Objective C SDK for APIv2'
s.homepage = 'https://www.dropbox.com/developers'
s.license = 'MIT'
s.author = { 'Stephen Cobbe' => '[email protected]' }
s.source = { :git => 'https://github.com/dropbox/dropbox-sdk-obj-c.git', :tag => s.version }
s.source_files = 'Source/ObjectiveDropboxOfficial/Shared/**/*.{h,m}', 'Source/ObjectiveDropboxOfficial/Headers/**/*.h'
s.osx.source_files = 'Source/ObjectiveDropboxOfficial/Platform/ObjectiveDropboxOfficial_macOS/**/*.{h,m}'
s.ios.source_files = 'Source/ObjectiveDropboxOfficial/Platform/ObjectiveDropboxOfficial_iOS/**/*.{h,m}'
s.resource_bundles = {
'ObjectiveDropboxPrivacyInfo' => ['Source/ObjectiveDropboxOfficial/PrivacyInfo.xcprivacy'],
}
s.requires_arc = true
s.osx.deployment_target = '10.13'
s.ios.deployment_target = '12.0'
s.public_header_files = 'Source/ObjectiveDropboxOfficial/Shared/**/*.h', 'Source/ObjectiveDropboxOfficial/Headers/Umbrella/*.h'
s.osx.public_header_files = 'Source/ObjectiveDropboxOfficial/Platform/ObjectiveDropboxOfficial_macOS/**/*.h'
s.ios.public_header_files = 'Source/ObjectiveDropboxOfficial/Platform/ObjectiveDropboxOfficial_iOS/**/*.h'
s.osx.frameworks = 'AppKit', 'SystemConfiguration', 'Foundation'
s.ios.frameworks = 'UIKit', 'SafariServices', 'SystemConfiguration', 'Foundation'
end