I have an application that loads through webview. I am able to login into application which has been launched through webview. But during logout, it keeps throwing ERR_NAME_NOT_RESOLVED
error for the server it is sending logout request against.
When I do the same login/logout in regular browser on mobile, i still get the same error on browser. When I do the same login/logout in regular browser on PC, it works perfectly fine.
Not entirely sure if this is a webview using Chromium client issue or issue with server?
1 Answers
Answers 1
- On the 3G in your mobile emulator
- And on the Cellular Data
- Make sure 3G Symbol appears above the signal strength symbol
And try to add permissions in your manifest to access internet:
<uses-permission android:name="android.permission.INTERNET" /> </manifest> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
As stated here.
0 comments:
Post a Comment