I'm trying to install a platform but when I open Android Manager then I click Available Software then select the https://dl-ssl.google.com/android/repository/repository.xml repository

I get this error:

Failed to fetch URL https://dl-ssl.google.com/android/repository/repository.xml

I have also tried downloading by clicking on force "http:" for all "https:" downloads on settings panel but it still doesn't help.

I'm working on Windows Vista.

link|improve this question

What happens when you click those links in a browser? I am thinking your firewall/anti-virus may be blocking Eclipse from accessing the internet. – Austyn Mahoney Sep 27 '10 at 23:29
yes sir it opens in the browser.. but as even you can see it does not appear to me as xml file. – vaibhav Sep 28 '10 at 5:31
1  
any luck resolving this? I've disabled my firewall and tried the https with no luck either – amadib Sep 22 '11 at 2:21
feedback

5 Answers

up vote 7 down vote accepted

If you enter the URL in a browser and then look at the source code of the page you will see that an XML document is returned.

The reason why that URL would work in a browser but not in the android manager might be that you are required to specify a proxy server. In Eclipse (3.5.2) the proxy settings can be found here: "Window" -> "Preferences" -> "General" -> "Network Connections"

link|improve this answer
feedback

Try this solution and it worked. this problem is caused because ADB is unable to connect to the android servers to fetch updates. (If at home try turning off firewall)

  • Goto Android SDK Manager c://android-sdk-windows/ open SDK-Manager
  • Click Settings - Will be asked for a proxy.
  • If have one enter the IP address and the port number. If not turn off your firewall.
  • Check "Force https://... "

This should work immediately.

link|improve this answer
Setting the proxy settings correctly for my environment worked for me, thanks – Johnathan Hebert Jul 12 '11 at 14:31
How do I figure out my correct proxy settings? – dubyaa Dec 8 '11 at 20:02
+1 Thanks.. It worked... – happy2Help Apr 4 at 8:42
@dubayya : Inside Internet explorer, Press Alt+t -> Select Internet Options -> Select connections tab -> Click Lan settings. You can see Proxy settings there. Address and Port Number need to be updated for this particular problem. – happy2Help Apr 4 at 8:45
feedback

I had the same problem, made all the workarounds you advised: still the same error. I updated Eclipse via "Help / Check for updates" and now everything is ok. This update brought a completely new version of the Android SDK Manager.

link|improve this answer
feedback

Also, try to turn off your firewall and try to update with link.

link|improve this answer
feedback

I had the same problem: the latest update failed to install because it couldn't rename the tools folder in android-sdk-windows. I'm using AVG antivirus and disabling it didn't help, but I don't think it had anything to do with the AV program anyway.

Fact is, running the Android SDK setup apparently uses items in the "android-sdk-windows\tools" directory. I'm on Win Vista x32 so maybe that causes some unique situation - I'm not sure.

Solution:

  • I made 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).

  • I ran Android.bat from that copy

  • I ran the update without problems (it updated the original, not-being-used-at-the-moment tools folder, among whatever other items it needed to).

  • I closed the SDK, deleted the folder (I had to kill the adb.exe process first - not sure why that always persists but you can't delete the folder without doing that).

  • I restarted the SDK from the normal (now-updated) tools folder. Worked like a charm!

Note that simply killing adb.exe was NOT sufficient to get around the original issue... only by copying the tools folder and using the copy to run Android for the duration of the update process was enough to rectify the problem.

I hope this helps others... it's quite vexing to have to spend time resolving basic issues like this just to run an update.

link|improve this answer
feedback

protected by Shog9 Sep 22 '11 at 22:02

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.