Question
fixed. The solution I tried is a very similar answer. In addition to adding platform tools, I had to add a tool folder to bashrc.
This is how I added the android paths in the bashrc file.
# Android tools export PATH=${PATH}:~/android-sdk-linux_x86/tools export PATH=${PATH}:~/android-sdk-linux_x86/platform-tools export ANDROID_SDK_HOME=~/android-sdk-linux_x86/tools export PATH=$PATH:$ANDROID_SDK_HOME For those who have this problem after adding this, if you still have this issue then please make sure that the java path is added. It may be like export JAVA_HOME=/usr/lib/jvm/java-6-sun-1.6.0.26 export PATH=$PATH:$JAVA_HOME The java version name may varry depending on the version installed on your machine. To find the version name type java -version from terminal.
If there is still a problem, please check the permissions of the avd folder, its contents and the .android folder.
same problem. But my jdk version is 7. I solved this by following these steps:
ctrl+alt+t>>vi ~/.bashrc>>Add the path "android-sdk/platform-tools" to export Path= ....:Path set chmod -R 777 android-sdk`
source share