views:

88

answers:

1

The first thing described in the howto (http://www.assembla.com/wiki/show/scala-ide/Developing_for_Android) is this:

Step 1: Create the ant files for your project:

cd android update project --target 1 --path .

which yields 'command not found'. I'm in the 'workspace/name_of_my_app/' folder.

How do i get to have the 'android' command?

+2  A: 

You need to setup the environmental variables for andriod sdk properly. Here is documentation for the andriod command you are trying to execute:

http://developer.android.com/guide/developing/tools/othertools.html#android

Michael Bazos
Hm.I wrote:javac -versionand was told i had to install openjdk-6-jdk, since sun-java6-jdk did not have javac. So I did.After that, the android command magically just worked. I'm not much less confused than before.
Tom Hagen