├── .github └── FUNDING.yml ├── META-INF └── com │ └── google │ └── android │ ├── update-binary │ └── updater-script ├── README ├── envvar.sh ├── extracmd.sh ├── patch └── ContactsProvider-res │ └── res │ └── values │ └── arrays.xml ├── script └── ContactsProvider-smali.sh └── tools ├── aapt ├── apktool_2.0.3-dexed.jar ├── baksmali-2.1.3-dexed.jar ├── smali-2.1.3-dexed.jar ├── zip └── zipalign /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osm0sis/APK-Patcher/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /META-INF/com/google/android/update-binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osm0sis/APK-Patcher/HEAD/META-INF/com/google/android/update-binary -------------------------------------------------------------------------------- /META-INF/com/google/android/updater-script: -------------------------------------------------------------------------------- 1 | # Dummy file; update-binary is a shell script. 2 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osm0sis/APK-Patcher/HEAD/README -------------------------------------------------------------------------------- /envvar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osm0sis/APK-Patcher/HEAD/envvar.sh -------------------------------------------------------------------------------- /extracmd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osm0sis/APK-Patcher/HEAD/extracmd.sh -------------------------------------------------------------------------------- /patch/ContactsProvider-res/res/values/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osm0sis/APK-Patcher/HEAD/patch/ContactsProvider-res/res/values/arrays.xml -------------------------------------------------------------------------------- /script/ContactsProvider-smali.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osm0sis/APK-Patcher/HEAD/script/ContactsProvider-smali.sh -------------------------------------------------------------------------------- /tools/aapt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osm0sis/APK-Patcher/HEAD/tools/aapt -------------------------------------------------------------------------------- /tools/apktool_2.0.3-dexed.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osm0sis/APK-Patcher/HEAD/tools/apktool_2.0.3-dexed.jar -------------------------------------------------------------------------------- /tools/baksmali-2.1.3-dexed.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osm0sis/APK-Patcher/HEAD/tools/baksmali-2.1.3-dexed.jar -------------------------------------------------------------------------------- /tools/smali-2.1.3-dexed.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osm0sis/APK-Patcher/HEAD/tools/smali-2.1.3-dexed.jar -------------------------------------------------------------------------------- /tools/zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osm0sis/APK-Patcher/HEAD/tools/zip -------------------------------------------------------------------------------- /tools/zipalign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osm0sis/APK-Patcher/HEAD/tools/zipalign --------------------------------------------------------------------------------