gitextract_zkcj6awq/ ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── config.yml │ └── workflows/ │ ├── build.yml │ ├── ci.yml │ └── sync.yml ├── .gitignore ├── CONFIG.md ├── LICENSE ├── README.md ├── bin/ │ ├── aapt2/ │ │ ├── aapt2-arm │ │ └── aapt2-arm64 │ ├── apksigner.jar │ ├── dexlib2.jar │ ├── htmlq/ │ │ ├── htmlq-arm │ │ ├── htmlq-arm64 │ │ └── htmlq-x86_64 │ ├── paccer.jar │ └── toml/ │ ├── tq-arm │ ├── tq-arm64 │ └── tq-x86_64 ├── build-termux.sh ├── build.sh ├── config.toml ├── ks-p12.keystore ├── ks.keystore ├── ksu_profile/ │ ├── .gitignore │ └── jni/ │ └── ksu_profile.c ├── module/ │ ├── META-INF/ │ │ └── com/ │ │ └── google/ │ │ └── android/ │ │ ├── update-binary │ │ └── updater-script │ ├── bin/ │ │ ├── arm/ │ │ │ └── ksu_profile │ │ ├── arm64/ │ │ │ └── ksu_profile │ │ ├── x64/ │ │ │ └── ksu_profile │ │ └── x86/ │ │ └── ksu_profile │ ├── common.sh │ ├── customize.sh │ ├── service.sh │ └── uninstall.sh ├── sig.txt └── utils.sh