Created
April 29, 2015 16:30
-
-
Save VladSumtsov/739881d23fc53c2df3ca to your computer and use it in GitHub Desktop.
Kryo proguard configuration
This file contains hidden or 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
#kryo | |
-dontwarn sun.reflect.** | |
-dontwarn java.beans.** | |
-keep,allowshrinking class com.esotericsoftware.** { | |
<fields>; | |
<methods>; | |
} | |
-keep,allowshrinking class java.beans.** { *; } | |
-keep,allowshrinking class sun.reflect.** { *; } | |
-keep,allowshrinking class com.esotericsoftware.kryo.** { *; } | |
-keep,allowshrinking class com.esotericsoftware.kryo.io.** { *; } | |
-keep,allowshrinking class sun.nio.ch.** { *; } | |
-dontwarn sun.nio.ch.** |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Also, I needed this:
-dontwarn sun.misc.**