1

I have an Exception that appears only on the 'Gio Galaxy Android 2.3.3`.

enter image description here

Code:

public void onCreate(Bundle savedInstanceState)
{
    super.onCreate(savedInstanceState);

    ...............................



    setContentView(R.layout.web_view_layout);

    WebView v = (WebView)findViewById(R.id.web_view);

    v.getSettings().setJavaScriptEnabled(true);

    CookieSyncManager.createInstance(this);
    CookieManager cookieManager = CookieManager.getInstance();
    cookieManager.removeAllCookie();

 ..............................

 }
user
  • 86,916
  • 18
  • 197
  • 190
koleanu
  • 495
  • 5
  • 20
  • Please do not link to externally hosted images. In case of error texts try to include them as text or if that is too complicated as image but uploaded to Stackoverflow.com – Robert Mar 02 '12 at 14:56
  • http://stackoverflow.com/questions/7158434/webview-causes-sqlitediskioexception – Samir Mangroliya Mar 02 '12 at 15:13

1 Answers1

0

From what I've googled this occurs when a database becomes corrupt. I assume this Gio is the same device, over and over again, in your error log?

The strack trace is coming from the system, so I believe there's little you can do about it other than perhaps report the issue to Google.

Source

jlindenbaum
  • 1,891
  • 18
  • 28