-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve Stability of Calendar Widget on Android (#238)
- Loading branch information
1 parent
b0d6cde
commit 3544f24
Showing
7 changed files
with
62 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,42 @@ | ||
# joda | ||
-keep class org.joda.** {*;} | ||
-dontwarn org.joda.** | ||
|
||
# prettytime | ||
-keep class org.ocpsoft.pretty.time.i18n.** | ||
-keep class org.ocpsoft.prettytime.i18n.** | ||
-keep class org.ocpsoft.prettytime.units.** | ||
-keepnames class ** implements org.ocpsoft.prettytime.TimeUnit | ||
|
||
# gson | ||
-keepclassmembers,allowobfuscation class * { | ||
@com.google.gson.annotations.SerializedName <fields>; | ||
} | ||
-keep class * { | ||
@com.google.gson.annotations.SerializedName <fields>; | ||
} | ||
-if class * | ||
-keepclasseswithmembers class <1> { | ||
<init>(...); | ||
@com.google.gson.annotations.SerializedName <fields>; | ||
} | ||
-keepnames class com.fasterxml.jackson.databind.** { *; } | ||
-dontwarn com.fasterxml.jackson.databind.** | ||
|
||
# entires recommended by Android Studio | ||
-dontwarn com.google.android.play.core.splitcompat.SplitCompatApplication | ||
-dontwarn com.google.android.play.core.splitinstall.SplitInstallManager | ||
-dontwarn com.google.android.play.core.splitinstall.SplitInstallRequest$Builder | ||
-dontwarn com.google.android.play.core.splitinstall.SplitInstallRequest | ||
-dontwarn com.google.android.play.core.splitinstall.SplitInstallStateUpdatedListener | ||
-dontwarn com.google.android.play.core.tasks.OnFailureListener | ||
-dontwarn com.google.android.play.core.tasks.OnSuccessListener | ||
-dontwarn com.google.android.play.core.tasks.Task | ||
-dontwarn com.google.api.client.http.GenericUrl | ||
-dontwarn com.google.api.client.http.HttpHeaders | ||
-dontwarn com.google.api.client.http.HttpRequest | ||
-dontwarn com.google.api.client.http.HttpRequestFactory | ||
-dontwarn com.google.api.client.http.HttpResponse | ||
-dontwarn com.google.api.client.http.HttpTransport | ||
-dontwarn com.google.api.client.http.javanet.NetHttpTransport$Builder | ||
-dontwarn com.google.api.client.http.javanet.NetHttpTransport |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters