From d1d72859b4da95b5420afddf33902e0f91a0d117 Mon Sep 17 00:00:00 2001 From: Denton Gentry Date: Thu, 28 Jul 2022 05:44:26 -0700 Subject: [PATCH] Add GoPro to the apps allowed to skip the VPN. Fixes https://github.com/tailscale/tailscale/issues/2554 Signed-off-by: Denton Gentry --- android/src/main/java/com/tailscale/ipn/IPNService.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/android/src/main/java/com/tailscale/ipn/IPNService.java b/android/src/main/java/com/tailscale/ipn/IPNService.java index 81ffbf0..3d23ff1 100644 --- a/android/src/main/java/com/tailscale/ipn/IPNService.java +++ b/android/src/main/java/com/tailscale/ipn/IPNService.java @@ -75,6 +75,9 @@ public class IPNService extends VpnService { // Android Auto https://github.com/tailscale/tailscale/issues/3828 this.disallowApp(b, "com.google.android.projection.gearhead"); + // GoPro https://github.com/tailscale/tailscale/issues/2554 + this.disallowApp(b, "com.gopro.smarty"); + return b; }