Reputation: 2082
I am trying to make an android app in IntelliJ IDEA using scala. I made an android module and a scala module. I'm just after a little hello world for starters. I added the scala module as a dependency for the android module but when I builde the project("make project") or try to run the thing I get this error:
trouble writing output: format == null
Does anyone know what the problem is?
P.S. In netbeans I can't even add anything as a resource for an android project.
Could it be that this is not the way to do it, do I need to modify the main module's ant script or something? Any pointers are welcomed.
Upvotes: 5
Views: 1817
Reputation: 12591
I've programmed some android with scala using intellij. However I chose not to use intellij for compilation. Instead I used sbt (http://code.google.com/p/simple-build-tool/) with sbt android plugin (https://github.com/jberkel/android-plugin) for building and sbt idea processor (https://github.com/mpeltonen/sbt-idea) to create project files for idea.
Upvotes: 4