mirror of
https://github.com/okhsunrog/vpnhide.git
synced 2026-05-02 08:31:59 +00:00
Unified repository for the complete Android VPN-hiding stack: - zygisk/ — Rust Zygisk module (inline libc hooks via shadowhook) - lsposed/ — Kotlin LSPosed module (Java API + system_server hooks) - kmod/ — C kernel module (kretprobe hooks, invisible to anti-tamper) CI workflows use path filters to build only the changed component.
7 lines
294 B
Prolog
7 lines
294 B
Prolog
# Keep Xposed entry points — LSPosed loads these by reflection via assets/xposed_init
|
|
-keep class dev.okhsunrog.vpnhide.HookEntry { *; }
|
|
-keepnames class dev.okhsunrog.vpnhide.** { *; }
|
|
|
|
# Keep Xposed API types
|
|
-keep class de.robv.android.xposed.** { *; }
|
|
-dontwarn de.robv.android.xposed.**
|