I have an Exception
that appears only on the 'Gio Galaxy Android 2.3.3`.
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();
..............................
}