elnathan84 / Mobile-UXSDK-Android

DJI Mobile UXSDK is a suite of product agnostic UI objects that fast tracks the development of Android applications using the DJI Mobile SDK.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

DJI UX SDK for Android

What is This?

The UX SDK is a suite of product agnostic UI objects that fast tracks the development of Android applications using the DJI Mobile SDK. Also, check out the new open source version of UX SDK Beta .

Integration

Declare dependency via Maven:

<dependency>
    <groupId>com.dji</groupId>
    <artifactId>dji-uxsdk</artifactId>
    <version>4.14</version>
</dependency>

<dependency>
    <groupId>com.dji</groupId>
    <artifactId>dji-sdk-provided</artifactId>
    <version>4.14</version>
</dependency>

or Gradle:

implementation ('com.dji:dji-uxsdk:4.14', {
    /**
     * Comment the "library-anti-distortion" if your app does need Anti Distortion for Mavic 2 Pro and Mavic 2 Zoom.
     * Comment the "fly-safe-database" if you do not need database for release, or we will download it when DJISDKManager.getInstance().registerApp
     * is called.
     * Both will greatly reduce the size of the APK.
     */
    exclude module: 'library-anti-distortion'
    exclude module: 'fly-safe-database'

    /**
     * Uncomment the following line to exclude amap from the app.
     * Note that Google Play Store does not allow APKs that include this library.
     */
    // exclude group: 'com.amap.api'
})
/**
 * Uncomment the following block if you are using an SDK version does not match the UX SDK
 * version above. For example, this could be used if the SDK has a minor release version
 * ahead of the UX SDK.
 */
// implementation ('com.dji:dji-sdk:4.14', {
//    /**
//     * Uncomment the "library-anti-distortion" if your app does not need Anti Distortion for Mavic 2 Pro and Mavic 2 Zoom.
//     * Uncomment the "fly-safe-database" if you need database for release, or we will download it when DJISDKManager.getInstance().registerApp
//     * is called.
//     * Both will greatly reduce the size of the APK.
//     */
//     exclude module: 'library-anti-distortion'
//     exclude module: 'fly-safe-database'
//
//    /**
//     * Uncomment the following line to exclude amap from the app.
//     * Note that Google Play Store does not allow APKs that include this library.
//     */
//    // exclude group: 'com.amap.api'
// })
compileOnly ('com.dji:dji-sdk-provided:4.14')

For further detail on how to integrate the DJI UX SDK into your Android Studio project, please check the Getting Started with UX SDK tutorial.

Get Started With DJI UX SDK

Please check this Getting Started with DJI UX SDK tutorial to learn how to use DJI Android UX SDK and DJI Android SDK to create a fully functioning mini-DJI Go app easily, with standard DJI Go UIs and functionalities.

Learn More about DJI UX SDK

Please visit UX SDK Introduction for more details.

Development Workflow

From registering as a developer, to deploying an application, the following will take you through the full Mobile SDK Application development process:

Feedback

We’d love to have your feedback as soon as possible. Reach out to us when you hit roadblocks, or want to talk through something. At a minimum please let us know:

  • What improvements would you like to see?
  • What is hard to use or inconsistent with your expectations?
  • What is good?
  • Any bugs you come across.

Support

You can get support from DJI with the following methods:

Join Us

DJI is looking for all kinds of Software Engineers to continue building the Future of Possible. Available positions in Shenzhen, China and around the world. If you are interested, please send your resume to software-sz@dji.com. For more details, and list of all our global offices, please check https://we.dji.com/jobs_en.html.

DJI 招软件工程师啦,based在深圳,如果你想和我们一起把DJI产品做得更好,请发送简历到 software-sz@dji.com. 详情请浏览 https://we.dji.com/zh-CN/recruitment.

About

DJI Mobile UXSDK is a suite of product agnostic UI objects that fast tracks the development of Android applications using the DJI Mobile SDK.

License:Other