Launching the android SDK manager from the command line gets me this error and others like:

Failed to fetch URL http://dl-ssl.google.com/android/repository/addons_list-1.xml, reason: Failure initializing default SSL context

I've done plenty of searches and have forced http instead of https, created an androidtool.cfg file and added the line sdkman.force.http=true

permisions for all files in ~/.android are rw r r.

I'm calling android logged in as the owner of those files.

I am not using a proxy and I have no anti virus running.

I just installed fedora 16 and am not sure of any firewalls running by default.

I suspect a permissions problem somewhere along the line.

any ideas?

link|improve this question
feedback

5 Answers

He had an idea see http://blog.erdn.info/?p=7.

apt-get remove gcj-4.4-base
link|improve this answer
Might be right but I ended up removing fedora. If I come across the problem again I'll try the solutions here to confirm/disaffirm. Thanks for the help. – user1156220 Apr 6 at 7:48
feedback

You mentioning that you were running from the command line gave me the idea to load it via the file system GUI. Doing that worked fine for me.

link|improve this answer
Might be right but I ended up removing fedora. If I come across the problem again I'll try the solutions here to confirm/disaffirm. Thanks for the help. – user1156220 Apr 6 at 7:50
feedback

For my debian I needed to install sun java properly:

su
apt-get install sun-java6-jre sun-java6-plugin sun-java6-fonts
update-java-alternatives -s java-6-sun
exit

After that, I was able to run the update without errors.

link|improve this answer
Interesting. All java something related solutions. :) – user1156220 Apr 6 at 7:52
feedback

For Linux Users:

If have added androidtool.cfg in ~/.android , checked all the permissions , tried force http using the UI but nothing seems to work for you. May be this will help you overcome the problem.

type locate jre in terminal.

map yourself to your jdk/jre/bin folder. For me it is

/usr/local/jdk1.7.0_03/jre/bin

Open the android (the executable file)

locate the line

java_cmd="java" (should be the 62nd line in the file)

replace it with

java_cmd="path_to_your_jre_bin/java"

for me it is

java_cmd="/usr/local/jdk1.7.0_03/jre/bin/java"

Save the file.

And try again.

Hope it helps.

Happy Coding :)

link|improve this answer
Thanks. I'll give it a try if I come by the problem again (I ended up dropping Fedora). – user1156220 Apr 6 at 7:51
feedback

On my debian (unstable/amd64), I had to upgrade openjdk

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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