I'm using google api java client for connecting to Google Docs in Android app. Once in a while i get following exception:

UnknownHostException: www.google.com

Code:

transport = AndroidHttp.newCompatibleTransport();
ClientLogin authenticator = new ClientLogin();
authenticator.authTokenType = "writely";
authenticator.username = username.getText().toString();
authenticator.password = password.getText().toString();
authenticator.transport = transport;
authenticator.authenticate().getAuthorizationHeaderValue();

Device reset clears exception but is it necessary. I suspected for DNS caching and tried following but didnt work. Im not behind a proxy as far I know.

Security.setProperty("networkaddress.cache.ttl","0");
System.setProperty("networkaddress.cache.ttl","0");
System.setProperty("networkaddress.cache.negative.ttl","0");
System.setProperty("net.eth0.dns1","8.8.8.8");
System.setProperty("net.dns1","8.8.8.8");

Last time it occurred was this morning when one network connection "died", cell auto got second one, tried to do ClientLogin but failed with exception.

Just to make it clear, Im talking about DEVICE (htc desire hd), not emulator.
Thanks in advance.

link|improve this question
feedback

2 Answers

Try adding -dns-server 8.8.8.8Emulator Default options inside Preferences -> Android -> Launch, not from the code, maybe will do the work.

link|improve this answer
Not an emulator issue. – Fraggle Oct 22 '11 at 19:16
feedback

I run into this daily. I think it is a bug in the emulator. After reset of emulator it works again and it never happened on a real device.

Edit: most definitely a bug in the emulator. See this thread. There are also several posts on StackOverflow regarding those emulator connection issues.

link|improve this answer
He said on device not emulator. – Fraggle Oct 22 '11 at 19:15
feedback

Your Answer

 
or
required, but never shown

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