How to trace MobileFirst 7.1 server queries under Network tab while debugging Android devices with Chrome? -
since mobilefirst 6.3, couldn't find network queries server when debugging mobilefirst app on android chrome desktop. how can enable them ?
see here: mobilefirst 6.3 network debug issue
the xhr requests have been moved javascript layer native layer, , why not see them in network tab in chrome dev tools.
you can bring them back, must not forget remove code app when go production. not supported , can break/stop working @ moment, effect may happen app not supported.
add following bottom in common\js\initoptions.js:
wl.androidprofiledata[wl.epfield.support_wl_native_xhr] = false; wl.iphoneprofiledata[wl.epfield.support_wl_native_xhr] = false; wl.ipadprofiledata[wl.epfield.support_wl_native_xhr] = false; wl.windowsphone8profiledata[wl.epfield.support_wl_native_xhr] = false;
should work.
Comments
Post a Comment