From fe8a884309d399f6c2e7ac7bb0595eed6eb4a4d0 Mon Sep 17 00:00:00 2001 From: Vivek Revankar Date: Tue, 7 Jan 2025 22:45:18 -0800 Subject: [PATCH] add TODOs to adb scripts --- scripts/disable_tcp_debugging.sh | 4 +++- scripts/enable_tcp_debugging.sh | 4 ++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/scripts/disable_tcp_debugging.sh b/scripts/disable_tcp_debugging.sh index 52f4c6a..58feec8 100644 --- a/scripts/disable_tcp_debugging.sh +++ b/scripts/disable_tcp_debugging.sh @@ -6,4 +6,6 @@ # Usage: ./disable_tcp_debugging.sh ################################################################################ -setprop service.adb.tcp.port "" \ No newline at end of file +setprop service.adb.tcp.port "" + +# TODO: stop adb service diff --git a/scripts/enable_tcp_debugging.sh b/scripts/enable_tcp_debugging.sh index e8328ff..4f193e4 100644 --- a/scripts/enable_tcp_debugging.sh +++ b/scripts/enable_tcp_debugging.sh @@ -6,4 +6,8 @@ # Usage: ./enable_tcp_debugging.sh ################################################################################ +# TODO: verify port argument + setprop service.adb.tcp.port "$1" + +# TODO: stop & restart adb service