java - Creating an Akka actor system on an Android -
java - Creating an Akka actor system on an Android -
i'm trying create akka actor scheme on android (kitkat) device (with intellij + gradle) using java. first, had add together multidexenabled flag (and multidex back upwards android library) include com.typesafe.akka:akka-actor_2.10:2.3.9 library (otherwise, i'd nail 65535 dex function limit). then, started getting next lint warning:
message="invalid bundle reference in library; not included in android: java.lang.management. referenced scala.sys.process.package.." category="correctness" priority="6" summary="package not included in android" explanation="this check scans through libraries looking calls apis not included in android.
i suppressed warning, able build , started debugging code. however, plenty encountered java.lang.verifyerror: scala/none$ exception during creation of actorsystem.
what doing wrong? should using older akka version (i tried akka version 2.1.0)? code works when switch lollipop, need work on kitkat also, if possible. thanks.
java android akka android-4.4-kitkat
Comments
Post a Comment