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

While trying to update my Android SDK I am encountering this error when trying to install this particular package:

enter image description here

How do I fix this?

share|improve this question
2  
Not sure, but move your SDK into c:\android-sdk\ Having it in \Program Files\ with that space in the directory is not going to help you. It will haunt you at every turn – Blundell Dec 18 '11 at 21:56
2  
I'd keep it out of /Program Files/ honestly that space in the path is just evil. – Blundell Dec 19 '11 at 8:29

14 Answers

This happens once in a while on my Windows SDK (even when I don't have any antivirus or similar programs running, execute the SDK-Manager as an administrator and so on).

I just update the tools by hand in this case. Which means close the SDK-Manager after the error and open the ANDROID_SDK\temp folder. There should be a zip named tools_R16.zip or similar (don't remember the exact name). Unzip that. You should end up with a tools folder. Copy all the files from this folder into ANDROID_SDK\tools. Overwrite when asked. And take a backup of the SDKs tools folder beforehand, just in case something explodes.

After that, start the SDK-Manager again. The tools version should be updated.

share|improve this answer
I will try this as a last resort. – StickFigs Dec 18 '11 at 22:55
I found that this approach could also be applied to updating the android-sdk\extras\android\support folder – MissPiplup Jun 18 '12 at 5:51
This happened to me as well, so thanks for this answer. It is so damn frustrating, coming from XCode. Developing for Apple rocks. Developing for Android SUCKSSS. I just want to write some goddamn codes!! – Rocotilos Sep 7 '12 at 2:41
Thanks worked a treat. It worked for Android SDK update 20 – Bahadur Baniya Oct 8 '12 at 17:04
up vote 15 down vote accepted

The problem seems to be that Eclipse, or even the SDK Manager itself, locks the folder. Running android.bat from the tools folder should do the trick.

share|improve this answer
1  
I'm pretty sure that having it in "Program Files" wasn't the problem. I experienced the same issue with my directory located at C:\Android`. Simply exiting Eclipse and then running C:\Android\tools\android.bat` fixed the problem for me. – Jakobud Apr 19 '12 at 19:23
It saved me...I was trying for fewer times.Thanks for the ans – Drax Aug 12 '12 at 5:20
2  
It's worth noting that I needed to run android.bat as an admin or else I got the same error. Otherwise, works like a charm! – Nick Hartung Oct 14 '12 at 16:41
This worked for me. – LarsH Dec 11 '12 at 8:23
Yes, @NickHartung, is right. Run as administrator. Worked! – Amplify91 Jan 10 at 10:40

thanks. this is how I fixed it:

I updated the tools by hand in this case. Which means close the SDK-manager after the error and open the folder android-sdk-windows folder. Using LockHunter, unlock all programs from holding a lock on the android-sdk-windows\tools\ folder. http://lockhunter.com/?ver=&vertype=pro&sm=main_window_64

RENAME the android-sdk-windows\tools folder beforehand to tools_DELETEME There should be a zip named android-sdk-windows\temp\tools_r19-windows.zip. open that, You should see a tools folder in it. Copy that tools folder to android-sdk-windows\tools

After that, start the SDK-manager again. The tools version should be updated.

share|improve this answer

My solution was to start it from within eclipse - as Administrator.

share|improve this answer
I wasted an hour or so trying to find and remove anti virus software and figure out what was locking the file only to remember windows 7 has that inferior run as administrator thing... what a pointless feature. But it worked for me despite being logged in as admin anyhow. – Kai Qing Aug 27 '12 at 18:43

You probably started the SDK manager from eclipse? I encoutnered the same problem, and fixed it by manually opening the SDK manager from the directy tools.

share|improve this answer
No I'm starting it from outside of Eclipse. – StickFigs Dec 18 '11 at 22:54
Did you start it from the tools directory by using explorer, and is that window still open? – Nanne Dec 19 '11 at 12:37

well i had the same issue on windows 7 ... problem is that during the update it tries to rename the tools folder (inside the SDK folder) and that folder is used by a process "ADB" which is currently running ...

so you cannot do the update smoothly until you stop / kill that process ...

BTW copy pasting the new contents of tools folder from the temp would also work ...

share|improve this answer

Ensure you don't have any essential files or folder opened/being used by other applications including explorer.

share|improve this answer
I did I even restarted my PC and made sure no processes or services were running that would do this. – StickFigs Dec 18 '11 at 22:54

I've read before, people take a copy of the platform-tools folder and run the update from a different location. This ensures you haven't got open the files it's trying to update.

Could also disable your antivirus for 5 minutes o0o0.

share|improve this answer
I tried this and it didn't work either. Also, predictably, disabling antivirus did not help. – StickFigs Dec 18 '11 at 22:52

On Windows 7 and probably Vista, run Eclipse as administrator.

share|improve this answer

My problem was Windows 7 security. I opened up the security on C:\Program Files\Android to EVERYONE with FULL access and it then worked. I then removed EVERYONE after the update was complete.

share|improve this answer

I had to make a copy of the tools folder itself (keeping it at the same directory tree level, thus "tools" and "tools-copy" were both in the "android-sdk-windows" folder). Then ran Android.bat from that copy.

After the update just delete the tools-copy folder.

share|improve this answer

With windows 7, when "failed to install popup" appears kill the process called adb (from task manager ctrl+alt+del) then press "Yes" and stuff is being installed.

share|improve this answer

I tried running android.bat and got the same error.

What worked for me was using unlocker to unlock the \tools folder.

share|improve this answer

When you install tools/softwares use SDK manager. But don't use it when update. Do right click -> Run as administrator on android-sdk-windows\tools\android.bat file for updating tools. Always try to run commands as Administrator specially on Windows Vista/7/8. That'll fix most of permission issues etc...

share|improve this answer

protected by Kev Sep 1 '12 at 15:41

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.