You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 3, 2020. It is now read-only.
The remote debugging features is disabled by default in your Cordova app. To enable it, please call
XWalkView.enableRemoteDebugging()
in the main activity explicitly.
For example:
public class cordovaExample extends DroidGap
{
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
super.loadUrl(Config.getStartUrl());
+ // Enable the remote debugging.
+ this.appView.enableRemoteDebugging();
}
}
After this change, rebuild and launch your app on device. Now you could navigate to chrome://insepct/ in Google Chrome to see the inspectable pages in your app.