Android SDK Manager gives “Failed to fetch URL https://dl-ssl.google.com/android/repository/repository.xml” error when selecting repository

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 … Read more

Custom SSL handling stopped working on Android 2.2 FroYo

Here is the answer, with many, many thanks to a helpful Seesmic developer willing to share the fix: In the custom socket factory, the socket creation (with createSocket) has apparently been changed specifically for the SSLSocketFactory implementation. So the old: @Override public Socket createSocket(Socket socket, String host, int port, boolean autoClose) throws IOException, UnknownHostException { … Read more

ADT requires ‘org.eclipse.wst.sse.core 0.0.0’ but it could not be found

I’ve just encountered exactly the same problem in Eclipse 3.6 (Helios). After plenty of Googling I came across this link: http://code.google.com/intl/es/eclipse/docs/faq.html#wstinstallerror During installation, there’s an error about requiring org.eclipse.wst.sse.ui. How do I fix that? The Google Plugin for Eclipse depends on other specific Eclipse components, such as WST. Your installation of Eclipse may not yet … Read more