i have used ripple run cordova app in desktop browsers. know there better tool emulate mobile apps , it's integrated in chrome: chrome device mode mobile emulation.
is there way use chrome device mode mobile emulation instead of using ripple emulate app in chrome?
thanks
chrome remote debugging easy , useful monitor or debug network related bug in mobile application. follow following steps.
before have add these lines in application's src file (.java)
if (build.version.sdk_int >= build.version_codes.kitkat) { if (0 != (getapplicationinfo().flags &= applicationinfo.flag_debuggable)) { webview.setwebcontentsdebuggingenabled(true); } } (this allow chrome monitor running webview)
- enable usb debugging in mobile
- connect device pc.
- open chrome in pc
- go chrome menu > more tools > inspect devices.
- check in discover usb devices check box
- find application in list
- you can screencast app chrome now.
that it!! can debug application chrome.
note:- android
Comments
Post a Comment