Skip to content

Commit

Permalink
fix(android): update debugging prefix for chrome
Browse files Browse the repository at this point in the history
Chrome 83 drops the chrome prefix and moves to just devtools://

Fixes TIMOB-27912
  • Loading branch information
ewanharris authored and sgtcoolguy committed Jun 5, 2020
1 parent bf97ba8 commit edcb376
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ private void waitForDebugger()
Log.w(TAG, "Debugger listening on ws://" + url);
Log.w(
TAG,
"To connect Chrome DevTools, open Chrome to chrome-devtools://devtools/bundled/inspector.html?experiments=true&v8only=true&ws="
"To connect Chrome DevTools, open Chrome to devtools://devtools/bundled/inspector.html?experiments=true&v8only=true&ws="
+ url);
Log.w(TAG, "Waiting for debugger to connect for next 60 seconds...");
this.waitLock.wait(60000); // wait up to 60 seconds for debugger
Expand Down

0 comments on commit edcb376

Please sign in to comment.