tags:

views:

53

answers:

1

android-sdk-linux_86/platforms/android-4/tools/dx: line 77: exec: java: not found

I configured Android plateform on netbeans6.8 and created an android project, getting compile time error: android-sdk-linux_86/platforms/android-4/tools/dx: line 77: exec: java: not found

Please any solution?.

+1  A: 

If you are getting that error it means that Java is either not installed or not in your PATH. If you are using Ubuntu, you can install Java using the command sudo apt-get install default-jdk.

Michael Aaron Safyan