Created
January 30, 2012 21:34
-
-
Save gamlerhart/1706858 to your computer and use it in GitHub Desktop.
Akka2.0 on Android
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
## No Finate State Machines Support needed | |
-dontwarn akka.actor.FSM |
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
## Stuff referenced at runtime | |
-keep public class akka.actor.LocalActorRefProvider { | |
public <init>(...); | |
} | |
-keep class akka.event.Logging* | |
-keep class akka.event.Logging$LogExt{ | |
*; | |
} |
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
## No JMX for Android | |
-dontwarn akka.util.JMX* |
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
## Unsafe is there at runtime | |
-dontwarn sun.misc.Unsafe | |
-keep class sun.misc.Unsafe{ | |
*; | |
} |
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
## UUID helpers are not used | |
-dontwarn com.eaio.uuid.** |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment