-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from dji-sdk/dji_uxsdk_5.0_beta_2
Dji UXSDK 5.0 beta 2
- Loading branch information
Showing
467 changed files
with
22,204 additions
and
1,232 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,19 @@ | ||
Pod::Spec.new do |s| | ||
s.name = 'DJI-UXSDK-iOS-Beta-Core' | ||
s.version = '0.1.1' | ||
s.version = '0.2' | ||
s.license = 'MIT' | ||
s.summary = 'Core utilities for 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.documentation_url = 'https:/github.com//dji-sdk/Mobile-UXSDK-Beta-iOS/wiki' | ||
s.ios.deployment_target = '11.0' | ||
s.requires_arc = true | ||
s.module_name = 'DJIUXSDKCore' | ||
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', 'SWIFT_OBJC_BRIDGING_HEADER' => '$(PODS_TARGET_SRCROOT)/'} | ||
s.pod_target_xcconfig = { 'ENABLE_BITCODE' => 'NO', 'DEFINES_MODULE' => 'YES'} | ||
s.cocoapods_version = '>= 1.7.1' | ||
s.source_files = 'DJIUXSDKCore/**/*.{h,m}' | ||
s.public_header_files = 'DJIUXSDKCore/**/*.h' | ||
s.dependency 'DJI-SDK-iOS', '~> 4.11' | ||
s.dependency 'DJI-UXSDK-iOS-Beta-Communication', '0.1.1' | ||
end | ||
s.source_files = 'DJIUXSDKCore/**/*.{h,m,swift}' | ||
s.dependency 'DJI-SDK-iOS', '~> 4.12' | ||
s.dependency 'DJI-UXSDK-iOS-Beta-Communication', '0.2' | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
Pod::Spec.new do |s| | ||
s.name = 'DJI-UXSDK-iOS-Beta-Widgets' | ||
s.version = '0.1.1' | ||
s.version = '0.2' | ||
s.license = 'MIT' | ||
s.summary = 'A collection of widget, widget model, and related helpers for DJI iOS UX SDK.' | ||
s.summary = 'A collection of widget, widget model, and related helpers for DJI iOS UX SDK 5.0 Open Source (Beta 2).' | ||
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' | ||
|
@@ -11,11 +11,12 @@ Pod::Spec.new do |s| | |
s.module_name = 'DJIUXSDKWidgets' | ||
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', 'SWIFT_OBJC_BRIDGING_HEADER' => '$(PODS_TARGET_SRCROOT)/'} | ||
s.pod_target_xcconfig = { 'ENABLE_BITCODE' => 'NO', 'DEFINES_MODULE' => 'YES' } | ||
s.cocoapods_version = '>= 1.7.1' | ||
s.source_files = 'DJIUXSDKWidgets/**/*.{h,m}' | ||
s.resource_bundle = { 'DUXBetaAssets' => 'DJIUXSDKWidgets/**/*.xcassets' } | ||
s.dependency 'DJI-SDK-iOS', '~> 4.11' | ||
s.dependency 'DJI-UXSDK-iOS-Beta-Core', '0.1.1' | ||
s.dependency 'DJI-UXSDK-iOS-Beta-Communication', '0.1.1' | ||
end | ||
s.source_files = 'DJIUXSDKWidgets/**/*.{h,m,swift}' | ||
s.resource_bundle = { 'DUXBetaAssets' => 'DJIUXSDKWidgets/**/*.{xcassets,html,otf}' } | ||
s.dependency 'DJI-SDK-iOS', '~> 4.12' | ||
s.dependency 'DJIWidget', '~> 1.6.2' | ||
s.dependency 'DJI-UXSDK-iOS-Beta-Core', '0.2' | ||
s.dependency 'DJI-UXSDK-iOS-Beta-Communication', '0.2' | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
// | ||
// DJIUXSDK.h | ||
// DJIUXSDK | ||
// | ||
// Copyright © 2018-2020 DJI. All rights reserved. | ||
// | ||
|
||
#import <UIKit/UIKit.h> | ||
#import <DJISDK/DJISDK.h> | ||
|
||
//! Project version number for DJIUXSDK. | ||
FOUNDATION_EXPORT double DJIUXSDKVersionNumber; | ||
|
||
//! Project version string for DJIUXSDK. | ||
FOUNDATION_EXPORT const unsigned char DJIUXSDKVersionString[]; | ||
|
||
// In this header, you should import all the public headers of your framework using statements like #import <DJIUXSDK/PublicHeader.h> | ||
|
||
#import <DJIUXSDKCore/DJIUXSDKCore.h> | ||
#import <DJIUXSDKCommunication/DJIUXSDKCommunication.h> | ||
#import <DJIUXSDKWidgets/DJIUXSDKWidgets.h> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.