Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
7.1.0 (2026-06-16)
---------------------------------------------
- Update generated SDK code from the latest Dropbox API spec.
- [#565](https://github.com/dropbox/dropbox-sdk-java/pull/565) Add `DbxRequest` API support.
- [#557](https://github.com/dropbox/dropbox-sdk-java/pull/557) Mark `getUserMessage` as nullable.
- [#556](https://github.com/dropbox/dropbox-sdk-java/pull/556) Raise the minimum Android version to Android 8 (SDK 26).
- [#545](https://github.com/dropbox/dropbox-sdk-java/pull/545) Support Android SDK 35.
- [#547](https://github.com/dropbox/dropbox-sdk-java/pull/547) Fix Stone task output stability across machines.
- Fix ProGuard metadata assertions.

7.0.0 (2024-04-29)
---------------------------------------------
- [#537](https://github.com/dropbox/dropbox-sdk-java/pull/537) Remove cert pinning from the SDK
Expand Down
9 changes: 4 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ If you're using Maven, then edit your project's "pom.xml" and add this to the `<
<dependency>
<groupId>com.dropbox.core</groupId>
<artifactId>dropbox-core-sdk</artifactId>
<version>7.0.0</version>
<version>7.1.0</version>
</dependency>
```

Expand All @@ -39,7 +39,7 @@ If you are using Gradle, then edit your project's "build.gradle" and add this to
```groovy
dependencies {
// ...
implementation 'com.dropbox.core:dropbox-core-sdk:7.0.0'
implementation 'com.dropbox.core:dropbox-core-sdk:7.1.0'
}
```

Expand Down Expand Up @@ -274,8 +274,8 @@ Edit your project's "build.gradle" and add the following to the dependencies sec
```
dependencies {
// ...
implementation 'com.dropbox.core:dropbox-core-sdk:7.0.0'
implementation 'com.dropbox.core:dropbox-android-sdk:7.0.0'
implementation 'com.dropbox.core:dropbox-core-sdk:7.1.0'
implementation 'com.dropbox.core:dropbox-android-sdk:7.1.0'
}
```
If you leverage jettifier and see the following errors then please add `android.jetifier.ignorelist = jackson-core,fastdoubleparser` to your `gradle.properties` file.
Expand Down Expand Up @@ -440,4 +440,3 @@ OkHttpClient httpClient = OkHttpRequestor.defaultOkHttpClient().clone()
.setCertificatePinner(myCertificatePinner)
.build();
```

2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# POM
GROUP = com.dropbox.core
VERSION_NAME=7.1.0-SNAPSHOT
VERSION_NAME=7.1.0

POM_URL = https://github.com/dropbox/dropbox-sdk-java/
POM_SCM_URL = https://github.com/dropbox/dropbox-sdk-java/
Expand Down
Loading