Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Not sure what I'm doing wrong here. I installed the Android SDK Manager, and am now trying to install a platform like the Android Dev website suggests. Once I clicked install I got an error stating that the Manager could not create a temp folder within the Android directory. So I created it. Now I'm getting this error:

Downloading SDK Platform Android 2.3, API 9, revision 1 File not found: C:\Program Files (x86)\Android\android-sdk-windows\temp\android-2.3_r01-linux.zip (Access is denied)

There is also a little message under the progress bar that says "Done. Nothing was installed."

I'm running Windows 7 Ultimate, in case that's of any use.

share|improve this question

4 Answers

up vote 125 down vote accepted

When you launch SDK manager, try right clicking on the .exe and selecting "Run As Administrator".

Also, some anti-virus programs have been known to interfere with SDK Manager

share|improve this answer
4  
Oh wow! Run as Admin did the trick. Thank you. – vince88 Jan 23 '11 at 2:19
Run as Admin seems to be working for me too. Thanks! – jaywalking101 Sep 30 '11 at 18:53
It does not work for me, I cant install the android-sdk\tools even though I run as Administrator – Vass May 6 '12 at 10:42
@Vass where exactly is yours failing? – William Tate May 6 '12 at 15:50
1  
@Vass Ok, I have seen that issue before as well. I answered a question on it here: stackoverflow.com/questions/8839255/… – William Tate May 7 '12 at 14:13
show 2 more comments

In my case I had to specify proxy settings in Tools->Options.

share|improve this answer

I had a similar issue - very slow xml downloads followed by an empty package list. The SDK, it seems, was trying to use legacy Java installation. Setting the JAVA_HOME to the 1.6 jdk did the trick.

share|improve this answer

In my case I was using Windows 7 with the 64-bit OS. We installed the 64-bit Java SE and 64-bit ADT Bundle. With that set up, we couldn't get the SDK manager to work correctly (specifically, no downloads allowed and it didn't show all the API download options). After trying all of the above answers and from other posts, we decided to look into the Java set up and realized it might the 64-bit configuration that's giving the ADT bundle grief (I vaguely recall seeing/reading this issue before).

So we uninstalled Java 64-bit and reinstalled the 32-bit, and then used the 32-bit ADT bundle, and it worked correctly. The system user was already an admin, so we didn't need to "Run as Administrator"

share|improve this answer

protected by Community Dec 18 '11 at 16:54

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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