From 8017ae480a967a5257e53d264b0097ccf0d7b620 Mon Sep 17 00:00:00 2001 From: Aminda Suomalainen Date: Fri, 14 Mar 2025 12:32:36 +0200 Subject: [PATCH] adb-permissions.bash: add notes on configuring private DNS further via https://yamen.dev/posts/configure-private-dns-android-tv/ --- bash/adb-permissions.bash | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/bash/adb-permissions.bash b/bash/adb-permissions.bash index f61162a..4b70d1c 100755 --- a/bash/adb-permissions.bash +++ b/bash/adb-permissions.bash @@ -42,6 +42,9 @@ adb "$@" shell pm grant com.github.cvzi.darkmodewallpaper android.permission.REA (adb "$@" shell pm uninstall com.google.android.safetycore &) #(adb "$@" shell pm disable com.google.android.safetycore &) +# Enable DNS-over-TLS or DoH3 as below +(adb "$@" shell settings put global private_dns_mode hostname &) +(adb "$@" shell settings put global private_dns_specifier dns.google &) # Should tell whether the DoH3 module exists (adb "$@" shell pm list package | grep com.android.resolv &) @@ -53,5 +56,6 @@ adb "$@" shell pm grant com.github.cvzi.darkmodewallpaper android.permission.REA sleep 5 #adb "$@" reboot -printf "Performance issues? adb shell top -b | head\n" +printf "Consider: adb $@ shell settings put global private_dns_specifier dns.adguard-dns.com\n" +printf "Performance issues? adb $@ shell top -b | head\n" set +x