-
Notifications
You must be signed in to change notification settings - Fork 0
/
DJIFileManager.podspec
29 lines (24 loc) · 1.04 KB
/
DJIFileManager.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 = 'DJIFileManager'
s.version = '1.1.0'
s.summary = 'A file management component for DJISDK-iOS'
s.homepage = 'https://github.com/gzkiwiinc/DJIFileManager'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.authors = { "Kyle" => "[email protected]",
"Hanson" => "[email protected]" }
s.source = { :git => 'https://github.com/gzkiwiinc/DJIFileManager.git', :tag => s.version.to_s }
s.ios.deployment_target = '10.0'
s.swift_version = '5.0'
s.xcconfig = { 'VALID_ARCHS' => 'arm64 arm64e' }
s.source_files = 'DJIFileManager/*.swift'
s.resource_bundles = {
'DJIFileManager' => ['DJIFileManager/Assets/*']
}
s.dependency 'DJI-SDK-iOS', '~> 4.9'
s.dependency 'SnapKit'
s.dependency 'PromiseKit'
s.dependency 'MJRefresh'
s.dependency 'DJISDKExtension'
s.frameworks = 'UIKit'
s.pod_target_xcconfig = {'ENABLE_BITCODE' => 'NO'} # due to dji sdk
end