When I run rake run:android, I get the error (I'm using Ubuntu):

Your java bin folder does not appear to be on your path.
This is required to use rhodes.

Here is the relevant part of my bash.bashrc file:

export PATH="$PATH:$HOME/ruby/gems/bin"
export GEM_HOME="$HOME/ruby/gems"
export GEM_PATH="$GEM_HOME:/usr/lib/ruby/gems/1.8"
export GEM_CACHE="$GEM_HOME/cache"
export RUBYOPT=rubygems

export ANDROID_HOME="/home/username/ruby_files/android-sdk-linux_86"
PATH="$PATH:$ANDROID_HOME/tools"

export JAVA_HOME=/usr/lib/jvm/java-6-sun-1.6.0_21
export JAVA_HOME
PATH=$PATH:$JAVA_HOME/bin
export PATH
link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

If I'm not mistaken, the Rhodes framework is looking for your jdk bin, not your jvm bin.

I'm guessing that your path /usr/lib/jvm/java-6-sun-1.6.0_21/bin points to your jvm bin. You need to add your jdk bin directory to your PATH. It needs to access javac.

link|improve this answer
Thanks, this got rid of the Java bin error. Now there is some other problem. Such is life :) – user94154 Dec 24 '10 at 23:05
feedback

Your Answer

 
or
required, but never shown

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