0

I am trying to build Gluon application with Akka. Building for API 22. Everytime I try to run it, I successfully compile other dependencies (I see them in bottom panel) but always get problem with Scala or Akka, however, everytime I run it, error is on other line/file.

enter image description here

spam
  • 1,853
  • 2
  • 13
  • 33
  • 2
    You must build using sbt. And scala 2.12 will not work on android at all. Period. – pfn Sep 05 '16 at 00:13
  • What is newest Scala/Akka version, that will run? Please post everything as an answer, so I can accept it, please. – spam Sep 05 '16 at 09:32

1 Answers1

2

Scala 2.11.8 is the current and latest version that will run on android.

I don't know about akka as it is not a good fit on android.

pfn
  • 1,820
  • 12
  • 11
  • 1
    Akka 2.3.x is the last version to support Java 6 and has been reported to run on Android. See example using macroid [here](http://macroid.github.io/modules/Akka.html). – Not Mandatory Sep 10 '16 at 05:32