How to debug Crosswalk webview remotely?

前端 未结 2 875
时光说笑
时光说笑 2020-12-10 08:34

I\'m trying to use XWalkView in Android 5.

When I try to inspect an XWalkView in chrome://inspect, I can see the name of the app that is running, but no options for

相关标签:
2条回答
  • 2020-12-10 09:08

    To debug xwalk webview remotely is similar to webview except the webview config.

    a. Config your chrome and device for debugging. Refer to google articles or SO post.

    b. Config your webivew for debugging. (difference between webview and xwalkview) Refer to xwalkview doc.

    For xwalkview, XWalkPreferences.setValue(XWalkPreferences.REMOTE_DEBUGGING, true);

    (For webview, WebView.setWebContentsDebuggingEnabled(true); //v4.4+) Refer to this answer.

    0 讨论(0)
  • 2020-12-10 09:09

    try using

    XWalkPreferences.setValue(XWalkPreferences.REMOTE_DEBUGGING, true);
    

    To enable remote debugging on my application.

    0 讨论(0)
提交回复
热议问题