Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I recently followed a way of programming for Android using Scala and Eclipse, which reduces the code and the compile time without using Proguard or Treeshake.

Following this article, I should be able use the last Eclipse build (3.7), almost the last version of Scala (2.8.1) updated on an emulator version 10, the version 2.8.3 within Eclipse with the provided plug-in.

The presented way is to provide a specific ramdisk image version, where we can upload scala libraries, which drastically shrinks the size of the code to upload to the emulator.

I followed the steps, created a hello world, added scala nature, added a dummy scala class, moved the Scala builder before the Android Package Installer, everything builds perfectly, but when I launch the apk on a emulator from Eclipse, the application crashes and I get the following error, which looks like the same as presented here (at the end of the document) :

    03-29 10:29:38.505: E/AndroidRuntime(839): java.lang.NoClassDefFoundError: upg.TestSinceInstallation.ComputeSum

If I remove the scala reference in the activity file, it runs well.

Here is the TestSinceInstallation.java file:

    package upg.TestSinceInstallation;

    import android.app.Activity;
    import android.os.Bundle;
    import upg.TestSinceInstallation.ComputeSum;

    public class TestSinceInstallationActivity extends Activity {
        /** Called when the activity is first created. */
        @Override
        public void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            int a = 1;
            int b = 5;
            ComputeSum cs = new ComputeSum(a, b);
            if(cs.getResut() == 6) {
              setContentView(R.layout.main);
            }
        }
    }

and here is the ComputeSum.scala file

    package upg.TestSinceInstallation

    class ComputeSum(a: Int, b: Int) {
      def getResut() : Int = a + b
    }

What do you think I should do to make this work ? I feel so close to the goal.

share|improve this question
Maybe your ComputeSum class is stripped by ProGuard, Can't you paste your build log ? – Zang MingJie Mar 29 '12 at 11:57
In this approach, there is no proGuard step. Nice try :) – Mikaël Mayer Mar 29 '12 at 12:28
Try smali to verify your apk, check whether ComputeSum class exists – Zang MingJie Mar 29 '12 at 12:40
Good tool ! I didn't know it. In the uncompiled files, there is a ComputeSum.smali , does that mean that the ComputeSum class exists ? – Mikaël Mayer Mar 29 '12 at 15:20
I wonder if I'm going to start a bounty for that. It would be so awesome if it worked. – Mikaël Mayer May 22 '12 at 21:17
show 2 more comments

1 Answer

up vote 37 down vote accepted

Here is the solution, to use Android with Eclipse 3.7 and with Scala 2.9.2 without any problems.

  • Install Eclipse 3.7 (for me 3.7.2)
  • Install Android SDT plug-in version 20 for Eclipse by pointing Eclipse to this website :

https://dl-ssl.google.com/android/eclipse/

http://download.scala-ide.org/releases-29/stable/site

https://androidproguardscala.s3.amazonaws.com/UpdateSiteForAndroidProguardScala

Now, to create a scala project,

  1. Create an Android project as usual
  2. Right-click on the project, Configure, Add Scala nature
  3. Right-click on the project, Add AndroidProguardScala nature

You're done.

Now good things happen. First, you can scalafy any activity, and you will get access to lazy evaluations, implicit conversion functions and removal of semicolons like this:

package com.example.testing;
import android.app.Activity
import android.os.Bundle
import android.widget.ImageButton
import android.view.View
class MyActivity extends Activity {
  lazy val my_button = findViewById(R.id.button).asInstanceOf[ImageButton]
  lazy val his_button = findViewById(R.id.button2).asInstanceOf[ImageButton]

  implicit def func2OnClickListener(func: (View) => Unit):View.OnClickListener = {
    new View.OnClickListener() { override def onClick(v: View) = func(v) }
  }
  implicit def func2OnClickListener(code: () => Unit):View.OnClickListener = {
    new View.OnClickListener() { override def onClick(v: View) = code() }
  }

  override def onCreate(savedInstanceState: Bundle) {
    super.onCreate(savedInstanceState)
    setContentView(R.layout.main)
    my_button.setOnClickListener(myCustomReactClick _)
    his_button.setOnClickListener { () =>
       //.... Scala code called after clicking his_button
    }
  }

  def myCustomReactClick(v: View) = {
    // .... Scala code called after clicking my_button
  }
}

Make sure that the name of the scala file matches the main activity contained in it, in this case it should be MyActivity.scala.

Second, to set up a scala project as a library project, to use is as a base for applications having different resources, follow the regular way of setting up a library project. Right-click on the scala project that you want as a base library project, Properties, Android, and check isLibrary.
To create derivated project using this library and for which you can generate an APK, create a new android project, and without adding any scala or androidproguardscala nature, just right-click, Properties, Android, and add the previous scala project as a library.

share|improve this answer
"Second, you can set-up a whole project as a library project without any extra effort, just by right-clicking on the project, Properties, Android, and check isLibrary, and you can have as many derivated projects as you want. The projects using that scala project do not need to have the scala nature nor the AndroidProguardScala nature." - can you elaborate on this please. Tell me exactly what to do to include the other project – Para Jun 20 '12 at 9:15
Done, I reformulated and added the instructions. – Mikaël Mayer Jun 25 '12 at 20:06
5  
Also, the doc (and code) for the plugin is at github.com/banshee/AndroidProguardScala (I'm the author) – James Moore Jul 16 '12 at 3:31
@MikaëlMayer only eclipse? Is such approach possible with IntellijIdea? – yetanothercoder Oct 14 '12 at 22:19
I have no idea about IntellijIdea. The plugin is for Eclipse only. Maybe you might want to try another command-line plugin github.com/jberkel/android-plugin – Mikaël Mayer Oct 15 '12 at 7:05
show 2 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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