-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathDJI-UXSDK-iOS-Beta.podspec
24 lines (24 loc) · 1.13 KB
/
DJI-UXSDK-iOS-Beta.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
Pod::Spec.new do |s|
s.name = 'DJI-UXSDK-iOS-Beta'
s.version = '0.4.2'
s.license = 'MIT'
s.summary = 'DJI iOS UX SDK'
s.homepage = 'https://github.com/dji-sdk/Mobile-UXSDK-Beta-iOS'
s.authors = { 'DJI' => '[email protected]' }
s.documentation_url = 'https://github.com/dji-sdk/Mobile-UXSDK-Beta-iOS/wiki'
s.ios.deployment_target = '11.0'
s.requires_arc = true
s.swift_version = '5.0'
s.module_name = 'DJIUXSDKBeta'
s.xcconfig = { 'OTHER_LDFLAGS' => '-ObjC -all_load' }
s.source = { :git => 'https://github.com/dji-sdk/Mobile-UXSDK-Beta-iOS.git', :tag => s.version.to_s }
s.pod_target_xcconfig = { 'ENABLE_BITCODE' => 'NO', 'DEFINES_MODULE' => 'YES'}
s.cocoapods_version = '>= 1.7.1'
s.source_files = 'DJIUXSDKBeta/**/*.{h,m,swift}'
s.dependency 'DJI-UXSDK-iOS-Beta-Core', '0.4.2'
s.dependency 'DJI-UXSDK-iOS-Beta-Flight', '0.4.2'
s.dependency 'DJI-UXSDK-iOS-Beta-Accessory', '0.4.2'
s.dependency 'DJI-UXSDK-iOS-Beta-Map', '0.4.2'
s.pod_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => "arm64 armv7 i386" }
s.user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => "arm64 armv7 i386" }
end