android: modify proguard rules to not mangle Tailscale app symbols

Updates tailscale/tailscale#14162

Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com>
pull/571/head
Brad Fitzpatrick 1 week ago committed by Brad Fitzpatrick
parent 788bb1dbcd
commit 463c70df2a

@ -3,8 +3,11 @@
native <methods>; native <methods>;
} }
# Keep the classes with syspolicy MDM keys, some of which # Keep Tailcale classes for debuggability, but especially
# get used only by the Go backend. # keep the classes with syspolicy MDM keys, some of which
# get used only by the Go backend. (The second rule is redundant,
# but explicit.)
-keep class com.tailscale.ipn.** { *; }
-keep class com.tailscale.ipn.mdm.** { *; } -keep class com.tailscale.ipn.mdm.** { *; }
# Keep specific classes from Tink library # Keep specific classes from Tink library

Loading…
Cancel
Save