Is It Ok To Use `scala.actors.actor` Object In An Android Application?
I know that it works, just checked. I'm wondering about the system not being able to free memory or the application 'hanging' in the background or such things. import scala.actors
Solution 1:
You shouldn't be using native scala actors, as they're deprecated. But you can run AKKA on Android. You can see this thread for more information and sample code: https://groups.google.com/forum/?fromgroups=#!topic/akka-user/1W41nAONv90
Post a Comment for "Is It Ok To Use `scala.actors.actor` Object In An Android Application?"