up vote 87 down vote favorite
48
share [g+] share [fb]

I have followed the tutorial at Scala and Android with Scala 2.7.3 final. The resulting Android App works but even the most basic application takes several minutes (!) to compile and needs 900 kb compressed, which is a show stopper for mobile applications. Additionally, the IDE runs out of memory every now and then. I assume dex is not made for big libraries like the scala-library.

So my question is: Has anyone actually done this and is there any cure for this?

link|improve this question

50% accept rate
feedback

protected by Dori May 19 '11 at 1:53

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

5 Answers

Ive written some basic android applications in scala, nothing to epic. Not being a java programmer I was suggested to use a "treeshake", I was explained by a friend that this strips out all the unnecessary libraries from the jar files.

I have not documented it, but I found that someone else already has:

http://chneukirchen.org/blog/archive/2009/04/programming-for-android-with-scala.html

Proguard is not the only solution , you might find something that suits your work flow or is more suited for your environment.

link|improve this answer
2  
Thank you! I will have to try that out. I wonder if it can be used with Eclipse (using the Scala and Android Plugins) – Lemmy Apr 22 '09 at 19:28
4  
Lemmy - is there any reason you didn't accept this answer? Perhaps you found a better solution? – DroidIn.net Nov 13 '09 at 18:58
Link is down... – drozzy May 10 '11 at 20:02
feedback

You can now use the Android plugin for Gradle to create Android applications in Scala. It incorporates the ProGuard tool to trim the fat from the resulting APK file, so seems to meet your needs.

http://wiki.github.com/jvoegele/gradle-android-plugin/

link|improve this answer
Works great! None of the solutions I tried worked out of the box but your Gradle plugin gave me useful feedback so I could easily fix what was going wrong. – Mendelt Aug 14 '11 at 15:16
feedback

There is also an plugin for the Scala-based builder sbt: sbt-android-plugin.

link|improve this answer
feedback

For tutorials and examples, see also Stéphane Micheloud's "Exploring Android" page: http://lamp.epfl.ch/~michelou/android/

link|improve this answer
feedback

Myself, I've tried all of the above suggested methods with little success. So I decided to modify the examples on Stéphane Micheloud's page and came up with a solution that works (at least on my Windows 7 machine).

You can find the needed files and instructions at: http://insella.se/blog/scala-on-android/

link|improve this answer
I posted to your blog entry that I was unsuccessful. Are you firing the ant build from within Eclipse or on the command line? I was trying to do so unsuccessfully from within Eclipse. – glenviewjeff Nov 11 '11 at 20:51
I've only succeeded in making it work through command line, not in Eclipse (having the same issue). Perhaps I should update the blog post to reflect this. – evilcandybag Nov 11 '11 at 22:55
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.