-
Notifications
You must be signed in to change notification settings - Fork 1
/
DBFileSynchronizer.podspec
25 lines (25 loc) · 1.09 KB
/
DBFileSynchronizer.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
Pod::Spec.new do |s|
s.name = 'DBFileSynchronizer'
s.version = '3.4.0'
s.summary = 'Dropbox file sync utilities'
s.description = <<-DESC
Objective-C utilities classes for syncing objects or files on Dropbox
DESC
s.homepage = 'https://github.com/eddy-lau/DBFileSynchronizer'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Eddie Lau' => '[email protected]' }
s.source = { :git => 'https://github.com/eddy-lau/DBFileSynchronizer.git', :tag => s.version.to_s }
s.swift_version = '4.2'
s.ios.deployment_target = '12.0'
s.source_files = 'DBFileSynchronizer/Classes/**/*'
s.resource_bundles = {
"DBFileSynchronizer" => ['DBFileSynchronizer/Assets/**/*.{png,storyboard}']
}
s.private_header_files = [
'DBFileSynchronizer/Classes/Sync/DBLegacyKeychtain.h',
'DBFileSynchronizer/Classes/Sync/DBSychronizer.h',
'DBFileSynchronizer/Classes/FileSync/*.h',
'DBFileSynchronizer/Classes/UI/DBAccountInfoCell.h'
]
s.dependency 'ObjectiveDropboxOfficial', '~> 7'
end