-
Notifications
You must be signed in to change notification settings - Fork 5
/
README
13 lines (7 loc) · 815 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
Very simple proof of concept that Akka[0] actors run on android by example of the DiningHakkersOnFsm[1].
Unfortunately it requires Android 2.3, as akka uses java.util.concurrent.ConcurrentSkipListSet doesn't seem to be supported on the "older" platforms. Please correct me if I'm wrong here.
Also had to manually add the interface org.omg.CORBA.portable.IDLEntity, since com.eiao.uuid.UUID depends on it and it's not available on android.
Also, it took some time to find the right proguard settings.
I've captured a minute of the running emulator for those with no access to an Android 2.3.3 phone (which is probably just about everybody): http://www.vimeo.com/20303656
[0] http://www.akka.io
[1] https://github.com/jboner/akka/blob/master/akka-samples/akka-sample-fsm/src/main/scala/DiningHakkersOnFsm.scala