forked from dropbox/dropbox-sdk-obj-c
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathObjectiveDropboxOfficial.podspec
More file actions
Latest commit
25 lines (20 loc) · 1.31 KB
/
Copy pathObjectiveDropboxOfficial.podspec
File metadata and controls
25 lines (20 loc) · 1.31 KB
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
Pod::Spec.newdo |s|
s.name='ObjectiveDropboxOfficial'
s.version='3.7.0'
s.summary='Dropbox Objective C SDK for APIv2'
s.homepage='https://dropbox.com/developers/'
s.license='MIT'
s.author={'Stephen Cobbe'=>'scobbe@dropbox.com'}
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.requires_arc=true
s.osx.deployment_target='10.10'
s.ios.deployment_target='9.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