Skip to content

Commit

Permalink
Merge pull request #1196 from dji-sdk/sdk_releases/4.16.3
Browse files Browse the repository at this point in the history
update for 4.16.3
  • Loading branch information
dji-dev committed Oct 26, 2022
2 parents 244c568 + 6817444 commit 359210c
Show file tree
Hide file tree
Showing 564 changed files with 14,618 additions and 3,006 deletions.
17 changes: 12 additions & 5 deletions README.md
@@ -1,4 +1,11 @@
# DJI Mobile SDK for Android Latest Version 4.16.2
# [MSDK V5 Released](https://github.com/dji-sdk/Mobile-SDK-Android-V5)

MSDK V5 Supported Product:
* [DJI Mavic 3 Enterprise Series](https://www.dji.com/cn/mavic-3-enterprise)
* [M30 Series](https://www.dji.com/matrice-30?site=brandsite&from=nav)
* [M300 RTK](https://www.dji.com/matrice-300?site=brandsite&from=nav)

# DJI Mobile SDK V4 for Android Latest Version 4.16.3

## What Is This?

Expand All @@ -12,21 +19,21 @@ Declare dependency via Maven:
<dependency>
<groupId>com.dji</groupId>
<artifactId>dji-sdk</artifactId>
<version>4.16.2</version>
<version>4.16.3</version>
</dependency>

<dependency>
<groupId>com.dji</groupId>
<artifactId>dji-sdk-provided</artifactId>
<version>4.16.2</version>
<version>4.16.3</version>
</dependency>
~~~

or Gradle:

~~~groovy
compile 'com.dji:dji-sdk:4.16.2'
provided 'com.dji:dji-sdk-provided:4.16.2'
compile 'com.dji:dji-sdk:4.16.3'
provided 'com.dji:dji-sdk-provided:4.16.3'
~~~

For further detail on how to integrate the DJI Android SDK into your Android Studio project, please check the [Integrate SDK into Application](http://developer.dji.com/mobile-sdk/documentation/application-development-workflow/workflow-integrate.html#import-maven-dependency) tutorial.
Expand Down
4 changes: 2 additions & 2 deletions Sample Code/app/build.gradle
Expand Up @@ -77,7 +77,7 @@ android {
dependencies {
implementation 'androidx.multidex:multidex:2.0.0'
implementation 'com.squareup:otto:1.3.8'
implementation('com.dji:dji-sdk:4.16.2', {
implementation('com.dji:dji-sdk:4.16.3', {
/**
* 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
Expand All @@ -87,7 +87,7 @@ dependencies {
exclude module: 'library-anti-distortion'
//exclude module: 'fly-safe-database'
})
compileOnly 'com.dji:dji-sdk-provided:4.16.2'
compileOnly 'com.dji:dji-sdk-provided:4.16.3'

implementation 'androidx.appcompat:appcompat:1.0.0'
implementation 'androidx.core:core:1.0.0'
Expand Down

0 comments on commit 359210c

Please sign in to comment.