You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: ReadMe.md
+10-3Lines changed: 10 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ If you're using Maven, then edit your project's "pom.xml" and add this to the `<
14
14
<dependency>
15
15
<groupId>com.dropbox.core</groupId>
16
16
<artifactId>dropbox-core-sdk</artifactId>
17
-
<version>2.0.4</version>
17
+
<version>2.0.5</version>
18
18
</dependency>
19
19
```
20
20
@@ -23,7 +23,7 @@ If you are using Gradle, then edit your project's "build.gradle" and add this to
23
23
```groovy
24
24
dependencies {
25
25
// ...
26
-
compile 'com.dropbox.core:dropbox-core-sdk:2.0.4'
26
+
compile 'com.dropbox.core:dropbox-core-sdk:2.0.5'
27
27
}
28
28
```
29
29
@@ -158,6 +158,13 @@ Another workaround is to tell your OSGi container to provide that requirement: [
158
158
159
159
### Does this SDK require any special ProGuard rules for shrink optimizations?
160
160
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
+
```
162
169
163
170
**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