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

I'm unable to update Android SDK tools version 21.0.1 on my Windows machine. While installing, this log shows:

  Installing Android SDK Tools, revision 21.0.1
  Failed to rename directory E:\android-sdks\tools to E:\android-sdks\temp\ToolPackage.old01.
  [find_lock] Directory locked by cmd.exe;java.exe
  Done. Nothing was installed.

How can I update SDK to latest version?

Thanks.

share|improve this question
Looks like it is still running (the old version) while you try to update it. Windows doesn't like such things. Can you make sure it's not running anymore? I'd check e.g. with the Windows Taskmanager under "applications" as well as "processes". – Izzy Jan 9 at 7:38
Kill java.exe in your task manager :) – Liam W Jan 9 at 8:18
Great! This worked!. Check stackoverflow.com/a/8559734/1917860 – nijas Jan 29 at 7:16

migrated from android.stackexchange.com Jan 9 at 14:51

5 Answers

up vote 2 down vote accepted

Android SDK Successfully updated. This one Works .. Check Here

share|improve this answer

Close the ADT, but leave the Android SDK Manager and click restart or replay

share|improve this answer
Leave the Android SDK Manager open? – geffchang Jan 9 at 9:57

I'm 99% sure that you're actually seeing a UAC problem. There are multiple known scenarios where Windows Vista or 7 (and presumably 8) will allow the creation of a new file, but silently blocks modification, and returns a "file locked" error message if you try.

Try temporarily disabling UAC (remember, you have to reboot for it to take effect) and running the updater with UAC disabled. If that fails, go a step further and make sure you launch the updater from a command prompt with Administrative privileges.

I think the root cause has something to do with the installer spawning another process/thread/app that doesn't inherit the parent's admin rights for some reason, and does it in a way/context that causes Windows to silently block the action instead of presenting you with a privilege elevation prompt.

share|improve this answer

I had problem updating android SDK platform tools. What I did is I ran the SDK manager as administrator and reloaded the packages. After that when I updated, it worked fine!

share|improve this answer

i have gone through this. just follow steps. close eclipse(if open).

  • go to android-sdk folder
  • copy tools folder and paste in same location using tools-copy2 (or any thing)
  • just launch update from tools-copy2
  • and you will be able to update it.
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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