Skip to content Skip to sidebar Skip to footer

Android Installation Issues

I have been trying to set up my android to begin my development lessons all day without success. I have installed the Java JDK kit and I'm trying to install the android sdk but thi

Solution 1:

The problem is there are two Java files and the installer picks the first one that it finds; The solution, however, is simple:

rename c:\windows\system\java.exe to c:\windows\system\java.exe.orj, then restart the installer, and everything should be fine.

It will now use the version of java.exe installed in Program Files\Java instead which solves the issue.

Solution 2:

I fixed this issue follow these steps:

  1. right click my computer->properties->advanced system settings->advanced tab->click environmental variable

  2. under system variales press new to create and new system variable

  3. give it name JAVA_HOME and give url to folder where java is installed

    e.g C:\Program Files\Java\jdk1.7.0_05 and then re-run sdk

Solution 3:

The only thing you had to do, was to set the path to the jdk source folder.

"C:\Program Files\Java\jdk1.7.0_03\"

That worked for me having that error.

Solution 4:

@hasan-veli-soyalan I tried your solution, but my c:\windows\system\java.exe not exist in my case, I'm using Windows 8 pro 64bit, instead, i found c:\windows\system32\java.exe and i changed it as you described, it worked!!

Solution 5:

you just need delete the "java.exe" of "C:\windows\System32\", and reset the java environment(JAVA_HOME,CLASSPATH,PATH), then you will successful pass this step.

By the way , i am under Windows7 X64

Post a Comment for "Android Installation Issues"