2

I'm wondering how (and if it's even possible) to remotely debug an app, written with the web SDK, running on the Samsung Galaxy Watch?

I'm able to:

  • connect to the watch with the Device Manager (logs show up, etc)
  • install and run the app on the watch
  • debug an app in the watch emulator (so I can confirm the Javascript debugger is working)

When I try to debug on the watch itself:

...but the Chrome page is blank. Reloading the page makes no difference, still stays blank.

Googling around I've found very little. This forum post (https://developer.tizen.org/forums/web-application-development/web-inspector-not-working-remote-device?langswitch=en) describes the same issue, but the answer is not useful: the provided link shows how to run the app (which works), not how to remotely debug.

Any help would be appreciated. At this point I'm not sure it's even possible.

Watch is running Tizen 4.0.0.1, and using Tizen Studio 3.0.

Jacob Mouka
  • 2,005
  • 18
  • 26

3 Answers3

3

After much searching I've found the way to solve the Blank issue with Chrome DevTools in this post: Chrom devtools insepctor showing blank white screen while debugging with Samsung TV Tizen Web application

Basically

  • Create the folder c:\Temp if it does not exist already
  • Go to Window > Preferences > Tizen Studio > Web > Chrome -> Extra parameters
  • Add --enable-blink-features=ShadowDOMV0 --enable-blink-features=CustomElementsV0 --user-data-dir=c:\Temp
JoSSte
  • 2,953
  • 6
  • 34
  • 54
2

I had same issue before. I solved the answer from HyunJun Jung of this this forum. https://developer.tizen.org/forums/web-application-development/web-inspector-not-working-remote-device?langswitch=en

enter image description here

enter image description here

enter image description here

enter image description here

BaiMaoli
  • 168
  • 2
  • 15
0

I had similar problem in the past. I noticed that Chrome since version 54 started block some process and console tab is blank. I found out that jakubkozlowsk@hotmail.com prepared extension Tizen Console Fix which fix this problem. I'm started using it and it helped me

lucash
  • 91
  • 2