How to debug Crosswalk webview remotely?

余生长醉 提交于 2019-11-27 06:18:21

问题


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 inspection. I also attempted in Canary, but it never got past USB auth for debug.

How can I use chrome dev tools to debug XWalkView?


回答1:


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.




回答2:


try using

XWalkPreferences.setValue(XWalkPreferences.REMOTE_DEBUGGING, true);

To enable remote debugging on my application.



来源:https://stackoverflow.com/questions/28054833/how-to-debug-crosswalk-webview-remotely

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!