Skip to content

Commit 511da59

Browse files
author
Karl Rieb
committed
ChangeLog/ReadMe: Update for 2.0.5 release.
1 parent 7401590 commit 511da59

2 files changed

Lines changed: 11 additions & 4 deletions

File tree

ChangeLog.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
2.0.5
1+
2.0.5 (2016-06-08)
22
---------------------------------------------
33
- Allow old locale formats for APIv2 requests.
44
- Fix ExceptionInInitializationError caused by CertificateParsingException when using Java 6 JREs.

ReadMe.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ If you're using Maven, then edit your project's "pom.xml" and add this to the `<
1414
<dependency>
1515
<groupId>com.dropbox.core</groupId>
1616
<artifactId>dropbox-core-sdk</artifactId>
17-
<version>2.0.4</version>
17+
<version>2.0.5</version>
1818
</dependency>
1919
```
2020

@@ -23,7 +23,7 @@ If you are using Gradle, then edit your project's "build.gradle" and add this to
2323
```groovy
2424
dependencies {
2525
// ...
26-
compile 'com.dropbox.core:dropbox-core-sdk:2.0.4'
26+
compile 'com.dropbox.core:dropbox-core-sdk:2.0.5'
2727
}
2828
```
2929

@@ -158,6 +158,13 @@ Another workaround is to tell your OSGi container to provide that requirement: [
158158

159159
### Does this SDK require any special ProGuard rules for shrink optimizations?
160160

161-
Versions 2.0.0-2.0.3 of this SDK require specific ProGuard rules to work with shrinking enabled. However, since version **2.0.4**, the SDK no longer needs special ProGuard directives.
161+
Versions 2.0.0-2.0.3 of this SDK require specific ProGuard rules to work with shrinking enabled. However, since version **2.0.4**, the SDK no longer needs special ProGuard directives. However, you may want to consider adding "-dontwarn" directives for unused optional dependencies:
162+
163+
```
164+
-dontwarn okhttp3.**
165+
-dontwarn com.squareup.okhttp.**
166+
-dontwarn com.google.appengine.**
167+
-dontwarn javax.servlet.**
168+
```
162169

163170
**IMPORTANT: If you are running version 2.0.x before 2.0.3, you should update to the latest Dropbox SDK version to avoid a deserialization bug that can cause Android apps that use ProGuard to crash.**

0 commit comments

Comments
 (0)