-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDJISDKExtension.podspec
29 lines (25 loc) · 1.13 KB
/
DJISDKExtension.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
#
# Be sure to run `pod spec lint DJISDKExtension.podspec' to ensure this is a
# valid spec and to remove all comments including this before submitting the spec.
#
# To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html
# To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/
#
Pod::Spec.new do |s|
s.name = "DJISDKExtension"
s.version = "1.4.3"
s.summary = "Extension for DJISDK-iOS."
s.description = "Extension for DJISDK-iOS, only support Swift."
s.homepage = "https://github.com/gzkiwiinc/DJISDKExtension"
s.license = "MIT"
s.authors = { "Kyle" => "[email protected]",
"Pandara" => "[email protected]" }
s.swift_version = "5.0"
s.ios.deployment_target = "9.0"
s.requires_arc = true
s.xcconfig = { 'VALID_ARCHS' => 'arm64 arm64e' }
s.source = { :git => "https://github.com/gzkiwiinc/DJISDKExtension.git", :tag => "#{s.version}" }
s.source_files = "DJISDKExtension/*.swift", "DJISDKExtension/**/*.swift"
s.dependency "DJI-SDK-iOS", "~> 4.11"
s.dependency "PromiseKit", "~> 6.4"
end