I am trying to put log message in the native code of Web kit in Android.
I am using the approach used at this page to put the log.
I am getting the error mentioned in this question.
I am testing my log by running an app containing a WebView, with the following code:
WebView wv = (WebView)findViewById(R.id.webView1);
wv.loadUrl("http://www.google.com");
Since I am using "http://" in my URL, the solution from the referenced question isn't useful.
Can anyone suggest what changes must be made to successfully get Logs from native code.
Thanks.