├── .gitignore ├── README.md ├── apktool_2.9.3.jar ├── framework.jar ├── jar_to_smali.sh ├── magisk_module ├── .DS_Store ├── META-INF │ └── com │ │ └── google │ │ └── android │ │ ├── update-binary │ │ └── updater-script ├── ext4-clean-100M.img ├── module.prop ├── service.sh └── system │ └── framework │ └── .gitignore ├── patches ├── .gitignore ├── _.sh ├── hide_debug_mode.sh ├── set_webview_debuggable.sh └── ssl_unpinning.sh └── smali_to_jar.sh /.gitignore: -------------------------------------------------------------------------------- 1 | *.dex 2 | *.smali -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsenOsen/android-framework-jar-patching/HEAD/README.md -------------------------------------------------------------------------------- /apktool_2.9.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsenOsen/android-framework-jar-patching/HEAD/apktool_2.9.3.jar -------------------------------------------------------------------------------- /framework.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsenOsen/android-framework-jar-patching/HEAD/framework.jar -------------------------------------------------------------------------------- /jar_to_smali.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsenOsen/android-framework-jar-patching/HEAD/jar_to_smali.sh -------------------------------------------------------------------------------- /magisk_module/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsenOsen/android-framework-jar-patching/HEAD/magisk_module/.DS_Store -------------------------------------------------------------------------------- /magisk_module/META-INF/com/google/android/update-binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsenOsen/android-framework-jar-patching/HEAD/magisk_module/META-INF/com/google/android/update-binary -------------------------------------------------------------------------------- /magisk_module/META-INF/com/google/android/updater-script: -------------------------------------------------------------------------------- 1 | #MAGISK -------------------------------------------------------------------------------- /magisk_module/ext4-clean-100M.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsenOsen/android-framework-jar-patching/HEAD/magisk_module/ext4-clean-100M.img -------------------------------------------------------------------------------- /magisk_module/module.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsenOsen/android-framework-jar-patching/HEAD/magisk_module/module.prop -------------------------------------------------------------------------------- /magisk_module/service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsenOsen/android-framework-jar-patching/HEAD/magisk_module/service.sh -------------------------------------------------------------------------------- /magisk_module/system/framework/.gitignore: -------------------------------------------------------------------------------- 1 | *.jar -------------------------------------------------------------------------------- /patches/.gitignore: -------------------------------------------------------------------------------- 1 | *.dex 2 | *.smali 3 | *.cache -------------------------------------------------------------------------------- /patches/_.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsenOsen/android-framework-jar-patching/HEAD/patches/_.sh -------------------------------------------------------------------------------- /patches/hide_debug_mode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsenOsen/android-framework-jar-patching/HEAD/patches/hide_debug_mode.sh -------------------------------------------------------------------------------- /patches/set_webview_debuggable.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsenOsen/android-framework-jar-patching/HEAD/patches/set_webview_debuggable.sh -------------------------------------------------------------------------------- /patches/ssl_unpinning.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsenOsen/android-framework-jar-patching/HEAD/patches/ssl_unpinning.sh -------------------------------------------------------------------------------- /smali_to_jar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsenOsen/android-framework-jar-patching/HEAD/smali_to_jar.sh --------------------------------------------------------------------------------