diff --git a/tools/winscope/src/DataAdb.vue b/tools/winscope/src/DataAdb.vue index 0b1eb8bcf..bb653d94f 100644 --- a/tools/winscope/src/DataAdb.vue +++ b/tools/winscope/src/DataAdb.vue @@ -39,7 +39,7 @@ update The version of Winscope ADB Connect proxy running on your machine is incopatibile with Winscope.
-

Please update the proxy to version {{ WINSCOPE_PROXY_VERSION }}

+

Please update the proxy to version {{ proxyClient.VERSION }}

Run:

python3 $ANDROID_BUILD_TOP/development/tools/winscope/adb_proxy/winscope_proxy.py

Or get it from the AOSP repository.

@@ -54,7 +54,7 @@ Proxy authorisation required - +
The proxy token is printed to console on proxy launch, copy and paste it above.
@@ -62,9 +62,9 @@
-
{{ Object.keys(devices).length > 0 ? "Connected devices:" : "No devices detected" }}
+
{{ Object.keys(proxyClient.devices).length > 0 ? "Connected devices:" : "No devices detected" }}
- + {{ device.authorised ? "smartphone" : "screen_lock_portrait" }} {{ device.authorised ? device.model : "unauthorised" }} ({{ id }}) @@ -76,7 +76,7 @@ smartphone - {{ devices[selectedDevice].model }} ({{ selectedDevice }}) + {{ proxyClient.devices[proxyClient.selectedDevice].model }} ({{ proxyClient.selectedDevice }}) Change device @@ -84,12 +84,12 @@

Trace targets:

- {{ DYNAMIC_TRACES[traceKey].name }} + {{ DYNAMIC_TRACES[traceKey].name }}

Surface Flinger config

- {{config}} + {{config}}
@@ -116,7 +116,7 @@

Dump targets:

- {{DUMPS[dumpKey].name}} + {{DUMPS[dumpKey].name}}
Dump state @@ -145,36 +145,9 @@