Skip to content

Instantly share code, notes, and snippets.

@gamlerhart
Created January 30, 2012 21:34
Show Gist options
  • Save gamlerhart/1706858 to your computer and use it in GitHub Desktop.
Save gamlerhart/1706858 to your computer and use it in GitHub Desktop.
Akka2.0 on Android
## No Finate State Machines Support needed
-dontwarn akka.actor.FSM
## Stuff referenced at runtime
-keep public class akka.actor.LocalActorRefProvider {
public <init>(...);
}
-keep class akka.event.Logging*
-keep class akka.event.Logging$LogExt{
*;
}
## No JMX for Android
-dontwarn akka.util.JMX*
## Unsafe is there at runtime
-dontwarn sun.misc.Unsafe
-keep class sun.misc.Unsafe{
*;
}
## 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