Re: [Android] Deprecate HTC 2.3 Android console.log support in 3.0

2013-05-13 Thread Jesse
console.log is pretty useful. This technically isn't our API, but a polyfill for platforms where console.log goes nowhere. WP7+8 have this broken into the DebugConsole plugin, and clobber window.console as well as navigator.console. modulemapper.clobbers('cordova/plugin/windowsphone/console',

Re: [Android] Deprecate HTC 2.3 Android console.log support in 3.0

2013-05-13 Thread Andrew Grieve
Could you be more specific about what you'd like to get rid of? Logger plugin? onConsoleMessage? On Mon, May 13, 2013 at 5:47 PM, Jesse purplecabb...@gmail.com wrote: console.log is pretty useful. This technically isn't our API, but a polyfill for platforms where console.log goes nowhere.

Re: [Android] Deprecate HTC 2.3 Android console.log support in 3.0

2013-05-13 Thread Simon MacDonald
I believe Joe means this bit of code: // Set the nav dump for HTC 2.x devices (disabling for ICS, deprecated entirely for Jellybean 4.2) try { Method gingerbread_getMethod = WebSettings.class.getMethod( setNavDump, new Class[] { boolean.class });

Re: [Android] Deprecate HTC 2.3 Android console.log support in 3.0

2013-05-13 Thread Joe Bowser
Yes, I want to get rid of that pretty bad piece of Java awfulness. On Mon, May 13, 2013 at 5:55 PM, Simon MacDonald simon.macdon...@gmail.com wrote: I believe Joe means this bit of code: // Set the nav dump for HTC 2.x devices (disabling for ICS, deprecated entirely for Jellybean 4.2)