Is there a way to enable the JavaScript Error/Debug Console for Safari within Android?

后端 未结 6 1099
栀梦
栀梦 2020-11-29 01:41

I\'m developing a JavaScript application that needs to run on the Google Android Phone OS. Is there a way to enable the JavaScript Error/Debug console within Safari on eith

6条回答
  •  萌比男神i
    2020-11-29 02:18

    A quick Google turns up this blog post (posted after you asked your question), that should at least let you see any Javascript errors via the Android Debug Bridge using the command:

    adb logcat WebCore:V *:S
    

    Not quite the same as a full debug console though.

提交回复
热议问题