3.2 the problem of installing the sdk platform. "Done. Nothing installed."

I select everything in the new update 3.2, but then I get the error message "done. Nothing was installed" after the sdk manager starts its process.

Here is the sdk installation log:

Downloading Android SDK Tools, revision 12 File not found: C:\Program Files (x86)\Android\android-sdk\temp\tools_r12-windows.zip (Access is denied) Downloading Android SDK Platform-tools, revision 6 File not found: C:\Program Files (x86)\Android\android-sdk\temp\platform-tools_r06-windows.zip (Access is denied) Downloading Documentation for Android SDK, API 13, revision 1 File not found: C:\Program Files (x86)\Android\android-sdk\temp\docs-3.2_r01-linux.zip (Access is denied) Downloading Samples for SDK API 13, revision 1 File not found: C:\Program Files (x86)\Android\android-sdk\temp\samples-3.2_r01-linux.zip (Access is denied) Downloading Android Compatibility package, revision 3 File not found: C:\Program Files (x86)\Android\android-sdk\temp\compatibility_r03.zip (Access is denied) Downloading Google Admob Ads Sdk package, revision 3 File not found: C:\Program Files (x86)\Android\android-sdk\temp\googleadmobadssdkandroid-4.1.1.zip (Access is denied) Skipping 'SDK Platform Android 3.2, API 13, revision 1'; it depends on 'Android SDK Tools, revision 12' which was not installed. Skipping 'Google APIs by Google Inc., Android API 13, revision 1'; it depends on 'SDK Platform Android 3.2, API 13, revision 1' which was not installed. 
+58
android eclipse install sdk
Jul 21 '11 at 23:16
source share
6 answers

Run the SDK manager as an administrator.




  • Right Click SDK Manager
  • Choose Run As Administrator
  • Press the YES button
+137
Jul 21 '11 at 23:19
source share

The key to your problem is simple. You must have administrator access. Files are not created automatically and therefore installation is not performed.

Start>>And roid SDK Manager>>right click SDK Manager and select run as administrator.

Try downloading again. It should work fine.

+9
Sep 06 2018-11-11T00:
source share

these answers are for Windows users as he recommends running the administrator as an administrator. for those on any linux platform (I'm on OSX), I suggest you cd to the folder where sdk is trying to download (for me it was / android -sdk / temp)

then I allowed all permissions in the folder recursively by running

 sudo chmod 777 ./ 
+4
Oct 08 '12 at 20:10
source share

Since you will most likely use the SDK manager more than once, and he will always need these administrator rights, a better option than remembering to right-click on a file / shortcut and selecting “run as administrator” each time would be set to the application was always executed with administrator rights without the need to remember this every time by following these steps:

  • Go to the SDK manager.
  • Right-click the SDK Manager.exe file.
  • Select properties from the context menu.
  • Go to the compatibility tab.
  • Check the box "Run this program as administrator."
  • Click ok to close the properties dialog box.

You can find more information about this and related options here .

+2
Jan 10 '13 at 9:30 a.m.
source share

On Linux, just run gksudo android or kdesudo android to run the Android SDK manager as root.

+2
May 30 '14 at 21:31
source share

I had a similar problem and this is what I did
in windows 10, the SDK manager is located in

 C:\Users\your_userfolder\AppData\Local\Android\sdk 

if you don’t see the “Appdata” folder, just click “Open” at the top of the window and check the “Hidden Objects” folder. right-click the "SDK Manager.exe" file and click "run as administrator". After that, the packages should start the installation.

0
Dec 08 '16 at 21:04
source share



All Articles