├── .gitignore ├── README.md ├── cli.conf.example ├── data ├── frameworks_single │ └── dummy ├── lang │ ├── cs_CZ.lng │ ├── de_DE.lng │ ├── el_GR.lng │ ├── en_US.lng │ ├── es_ES.lng │ ├── fr_FR.lng │ ├── hr_HR.lng │ ├── hu_HU.lng │ ├── in_ID.lng │ ├── it_IT.lng │ ├── lt_LT.lng │ ├── pl_PL.lng │ ├── pt_PT.lng │ ├── ru_RU.lng │ ├── sr_RS.lng │ ├── tr_TR.lng │ ├── uk_UA.lng │ ├── vi_VN.lng │ └── zh_CN.lng ├── license │ └── license.lic ├── patches │ ├── README.txt │ ├── anyfile_data.conf │ ├── buildprop │ │ ├── all_devices.ptch │ │ └── cancro.ptch │ ├── buildprop_data.conf │ ├── deletefiles.all_devices.conf │ ├── deletefiles.not_aries_cancro.conf │ ├── nxt │ │ ├── ContactsProvider │ │ │ ├── T9.ptch │ │ │ └── smali │ │ │ │ └── com │ │ │ │ └── android │ │ │ │ └── providers │ │ │ │ └── contacts │ │ │ │ └── t9 │ │ │ │ └── T9miuipro.smali │ │ └── MiuiRadio.ptch │ └── patch_data.conf ├── res │ ├── AndroidManifest.xml │ ├── id2.apk │ ├── id3.apk │ ├── id4.apk │ └── id5.apk ├── security │ ├── apkcerts.txt │ ├── media.pk8 │ ├── media.x509.pem │ ├── platform.pk8 │ ├── platform.x509.pem │ ├── shared.pk8 │ ├── shared.x509.pem │ ├── testkey.pk8 │ └── testkey.x509.pem ├── settings │ ├── README.txt │ ├── alt_rom_name.conf │ ├── apktool.filelist.conf │ ├── changelog.html │ ├── deletefiles.conf │ ├── dpifilter.conf │ ├── exclusions.repo.extra.conf │ ├── hex.filelist.conf │ ├── inline.txt │ ├── ota_exclude_filter.conf │ ├── ota_rom_name.conf │ ├── repo.android.v2.extra.conf │ ├── repo.android.v2.main.conf │ ├── repo.android.v2.patch.conf │ ├── repo.android.v4.extra.conf │ ├── repo.android.v4.main.conf │ ├── repo.android.v4.patch.conf │ ├── repo.mibox.extra.conf │ ├── repo.mibox.main.conf │ ├── repo.mibox.patch.conf │ ├── repo.miui.v10.extra.conf │ ├── repo.miui.v10.main.conf │ ├── repo.miui.v10.patch.conf │ ├── repo.miui.v11.main.conf │ ├── repo.miui.v12.extra.conf │ ├── repo.miui.v12.main.conf │ ├── repo.miui.v12.patch.conf │ ├── repo.miui.v2.extra.conf │ ├── repo.miui.v2.main.conf │ ├── repo.miui.v2.patch.conf │ ├── repo.miui.v4.extra.conf │ ├── repo.miui.v4.main.conf │ ├── repo.miui.v4.patch.conf │ ├── repo.miui.v5.extra.conf │ ├── repo.miui.v5.main.conf │ ├── repo.miui.v5.patch.conf │ ├── repo.miui.v6.extra.conf │ ├── repo.miui.v6.main.conf │ ├── repo.miui.v6.patch.conf │ ├── repo.miui.v7.extra.conf │ ├── repo.miui.v7.main.conf │ ├── repo.miui.v7.patch.conf │ ├── repo.miui.v8.extra.conf │ ├── repo.miui.v8.main.conf │ ├── repo.miui.v8.patch.conf │ ├── repo.miui.v9.extra.conf │ ├── repo.miui.v9.main.conf │ ├── repo.miui.v9.patch.conf │ ├── rom.extras.conf │ ├── rom.frameworks.conf │ ├── rom.types.conf │ ├── settings.conf │ ├── signfiles.conf │ ├── translation.parser.locales.conf │ ├── translation.parser.skipnotindefault.conf │ ├── translation.parser.skipnottranslated.conf │ ├── translation.parser.skipsizemismatch.conf │ └── xmlpatch.conf └── tools │ ├── arm │ └── deodexerant │ ├── lib │ ├── apktool_2.4.1.jar │ ├── baksmali-2.2.5.jar │ ├── oat2dex-0.83.jar │ ├── oat2dex-0.86.jar │ ├── oat2dex-0.87.jar │ ├── oat2dex-0.88.jar │ └── smali-2.2.5.jar │ ├── nix │ ├── aapt_miui_v7 │ ├── aapt_miui_v8 │ ├── aapt_romtype │ ├── bsdiff │ └── lib │ │ └── libc++.so │ ├── osx │ ├── aapt_romtype │ └── bsdiff │ └── win │ ├── aapt_romtype │ └── bsdiff.exe ├── jbart3h.jar └── runme_jar.bat /.gitignore: -------------------------------------------------------------------------------- 1 | logs/ 2 | projects/ 3 | .log 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/README.md -------------------------------------------------------------------------------- /cli.conf.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/cli.conf.example -------------------------------------------------------------------------------- /data/frameworks_single/dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/lang/cs_CZ.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/lang/cs_CZ.lng -------------------------------------------------------------------------------- /data/lang/de_DE.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/lang/de_DE.lng -------------------------------------------------------------------------------- /data/lang/el_GR.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/lang/el_GR.lng -------------------------------------------------------------------------------- /data/lang/en_US.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/lang/en_US.lng -------------------------------------------------------------------------------- /data/lang/es_ES.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/lang/es_ES.lng -------------------------------------------------------------------------------- /data/lang/fr_FR.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/lang/fr_FR.lng -------------------------------------------------------------------------------- /data/lang/hr_HR.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/lang/hr_HR.lng -------------------------------------------------------------------------------- /data/lang/hu_HU.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/lang/hu_HU.lng -------------------------------------------------------------------------------- /data/lang/in_ID.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/lang/in_ID.lng -------------------------------------------------------------------------------- /data/lang/it_IT.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/lang/it_IT.lng -------------------------------------------------------------------------------- /data/lang/lt_LT.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/lang/lt_LT.lng -------------------------------------------------------------------------------- /data/lang/pl_PL.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/lang/pl_PL.lng -------------------------------------------------------------------------------- /data/lang/pt_PT.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/lang/pt_PT.lng -------------------------------------------------------------------------------- /data/lang/ru_RU.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/lang/ru_RU.lng -------------------------------------------------------------------------------- /data/lang/sr_RS.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/lang/sr_RS.lng -------------------------------------------------------------------------------- /data/lang/tr_TR.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/lang/tr_TR.lng -------------------------------------------------------------------------------- /data/lang/uk_UA.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/lang/uk_UA.lng -------------------------------------------------------------------------------- /data/lang/vi_VN.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/lang/vi_VN.lng -------------------------------------------------------------------------------- /data/lang/zh_CN.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/lang/zh_CN.lng -------------------------------------------------------------------------------- /data/license/license.lic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/license/license.lic -------------------------------------------------------------------------------- /data/patches/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/patches/README.txt -------------------------------------------------------------------------------- /data/patches/anyfile_data.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/patches/anyfile_data.conf -------------------------------------------------------------------------------- /data/patches/buildprop/all_devices.ptch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/patches/buildprop/all_devices.ptch -------------------------------------------------------------------------------- /data/patches/buildprop/cancro.ptch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/patches/buildprop/cancro.ptch -------------------------------------------------------------------------------- /data/patches/buildprop_data.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/patches/buildprop_data.conf -------------------------------------------------------------------------------- /data/patches/deletefiles.all_devices.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/patches/deletefiles.all_devices.conf -------------------------------------------------------------------------------- /data/patches/deletefiles.not_aries_cancro.conf: -------------------------------------------------------------------------------- 1 | device "!aries,!cancro"; 2 | 3 | system/priv-app/Test* 4 | 5 | -------------------------------------------------------------------------------- /data/patches/nxt/ContactsProvider/T9.ptch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/patches/nxt/ContactsProvider/T9.ptch -------------------------------------------------------------------------------- /data/patches/nxt/ContactsProvider/smali/com/android/providers/contacts/t9/T9miuipro.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/patches/nxt/ContactsProvider/smali/com/android/providers/contacts/t9/T9miuipro.smali -------------------------------------------------------------------------------- /data/patches/nxt/MiuiRadio.ptch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/patches/nxt/MiuiRadio.ptch -------------------------------------------------------------------------------- /data/patches/patch_data.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/patches/patch_data.conf -------------------------------------------------------------------------------- /data/res/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/res/AndroidManifest.xml -------------------------------------------------------------------------------- /data/res/id2.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/res/id2.apk -------------------------------------------------------------------------------- /data/res/id3.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/res/id3.apk -------------------------------------------------------------------------------- /data/res/id4.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/res/id4.apk -------------------------------------------------------------------------------- /data/res/id5.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/res/id5.apk -------------------------------------------------------------------------------- /data/security/apkcerts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/security/apkcerts.txt -------------------------------------------------------------------------------- /data/security/media.pk8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/security/media.pk8 -------------------------------------------------------------------------------- /data/security/media.x509.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/security/media.x509.pem -------------------------------------------------------------------------------- /data/security/platform.pk8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/security/platform.pk8 -------------------------------------------------------------------------------- /data/security/platform.x509.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/security/platform.x509.pem -------------------------------------------------------------------------------- /data/security/shared.pk8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/security/shared.pk8 -------------------------------------------------------------------------------- /data/security/shared.x509.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/security/shared.x509.pem -------------------------------------------------------------------------------- /data/security/testkey.pk8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/security/testkey.pk8 -------------------------------------------------------------------------------- /data/security/testkey.x509.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/security/testkey.x509.pem -------------------------------------------------------------------------------- /data/settings/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/settings/README.txt -------------------------------------------------------------------------------- /data/settings/alt_rom_name.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/settings/alt_rom_name.conf -------------------------------------------------------------------------------- /data/settings/apktool.filelist.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/settings/apktool.filelist.conf -------------------------------------------------------------------------------- /data/settings/changelog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/settings/changelog.html -------------------------------------------------------------------------------- /data/settings/deletefiles.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/settings/deletefiles.conf -------------------------------------------------------------------------------- /data/settings/dpifilter.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/settings/dpifilter.conf -------------------------------------------------------------------------------- /data/settings/exclusions.repo.extra.conf: -------------------------------------------------------------------------------- 1 | # -------------------------------------------------------------------------------- /data/settings/hex.filelist.conf: -------------------------------------------------------------------------------- 1 | #Not available for free license type -------------------------------------------------------------------------------- /data/settings/inline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/settings/inline.txt -------------------------------------------------------------------------------- /data/settings/ota_exclude_filter.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/settings/ota_exclude_filter.conf -------------------------------------------------------------------------------- /data/settings/ota_rom_name.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/settings/ota_rom_name.conf -------------------------------------------------------------------------------- /data/settings/repo.android.v2.extra.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/settings/repo.android.v2.extra.conf -------------------------------------------------------------------------------- /data/settings/repo.android.v2.main.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/settings/repo.android.v2.main.conf -------------------------------------------------------------------------------- /data/settings/repo.android.v2.patch.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/settings/repo.android.v2.patch.conf -------------------------------------------------------------------------------- /data/settings/repo.android.v4.extra.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/settings/repo.android.v4.extra.conf -------------------------------------------------------------------------------- /data/settings/repo.android.v4.main.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/settings/repo.android.v4.main.conf -------------------------------------------------------------------------------- /data/settings/repo.android.v4.patch.conf: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /data/settings/repo.mibox.extra.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/settings/repo.mibox.main.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/settings/repo.mibox.patch.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/settings/repo.miui.v10.extra.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/settings/repo.miui.v10.main.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/settings/repo.miui.v10.main.conf -------------------------------------------------------------------------------- /data/settings/repo.miui.v10.patch.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/settings/repo.miui.v11.main.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/settings/repo.miui.v11.main.conf -------------------------------------------------------------------------------- /data/settings/repo.miui.v12.extra.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/settings/repo.miui.v12.main.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/settings/repo.miui.v12.main.conf -------------------------------------------------------------------------------- /data/settings/repo.miui.v12.patch.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/settings/repo.miui.v2.extra.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/settings/repo.miui.v2.extra.conf -------------------------------------------------------------------------------- /data/settings/repo.miui.v2.main.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/settings/repo.miui.v2.main.conf -------------------------------------------------------------------------------- /data/settings/repo.miui.v2.patch.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/settings/repo.miui.v2.patch.conf -------------------------------------------------------------------------------- /data/settings/repo.miui.v4.extra.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/settings/repo.miui.v4.extra.conf -------------------------------------------------------------------------------- /data/settings/repo.miui.v4.main.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/settings/repo.miui.v4.main.conf -------------------------------------------------------------------------------- /data/settings/repo.miui.v4.patch.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/settings/repo.miui.v4.patch.conf -------------------------------------------------------------------------------- /data/settings/repo.miui.v5.extra.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/settings/repo.miui.v5.extra.conf -------------------------------------------------------------------------------- /data/settings/repo.miui.v5.main.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/settings/repo.miui.v5.main.conf -------------------------------------------------------------------------------- /data/settings/repo.miui.v5.patch.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/settings/repo.miui.v5.patch.conf -------------------------------------------------------------------------------- /data/settings/repo.miui.v6.extra.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/settings/repo.miui.v6.main.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/settings/repo.miui.v6.main.conf -------------------------------------------------------------------------------- /data/settings/repo.miui.v6.patch.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/settings/repo.miui.v7.extra.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/settings/repo.miui.v7.main.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/settings/repo.miui.v7.main.conf -------------------------------------------------------------------------------- /data/settings/repo.miui.v7.patch.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/settings/repo.miui.v8.extra.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/settings/repo.miui.v8.main.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/settings/repo.miui.v8.main.conf -------------------------------------------------------------------------------- /data/settings/repo.miui.v8.patch.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/settings/repo.miui.v9.extra.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/settings/repo.miui.v9.main.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/settings/repo.miui.v9.main.conf -------------------------------------------------------------------------------- /data/settings/repo.miui.v9.patch.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/settings/rom.extras.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/settings/rom.extras.conf -------------------------------------------------------------------------------- /data/settings/rom.frameworks.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/settings/rom.frameworks.conf -------------------------------------------------------------------------------- /data/settings/rom.types.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/settings/rom.types.conf -------------------------------------------------------------------------------- /data/settings/settings.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/settings/settings.conf -------------------------------------------------------------------------------- /data/settings/signfiles.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/settings/signfiles.conf -------------------------------------------------------------------------------- /data/settings/translation.parser.locales.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/settings/translation.parser.locales.conf -------------------------------------------------------------------------------- /data/settings/translation.parser.skipnotindefault.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/settings/translation.parser.skipnotindefault.conf -------------------------------------------------------------------------------- /data/settings/translation.parser.skipnottranslated.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/settings/translation.parser.skipnottranslated.conf -------------------------------------------------------------------------------- /data/settings/translation.parser.skipsizemismatch.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/settings/translation.parser.skipsizemismatch.conf -------------------------------------------------------------------------------- /data/settings/xmlpatch.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/settings/xmlpatch.conf -------------------------------------------------------------------------------- /data/tools/arm/deodexerant: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/tools/arm/deodexerant -------------------------------------------------------------------------------- /data/tools/lib/apktool_2.4.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/tools/lib/apktool_2.4.1.jar -------------------------------------------------------------------------------- /data/tools/lib/baksmali-2.2.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/tools/lib/baksmali-2.2.5.jar -------------------------------------------------------------------------------- /data/tools/lib/oat2dex-0.83.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/tools/lib/oat2dex-0.83.jar -------------------------------------------------------------------------------- /data/tools/lib/oat2dex-0.86.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/tools/lib/oat2dex-0.86.jar -------------------------------------------------------------------------------- /data/tools/lib/oat2dex-0.87.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/tools/lib/oat2dex-0.87.jar -------------------------------------------------------------------------------- /data/tools/lib/oat2dex-0.88.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/tools/lib/oat2dex-0.88.jar -------------------------------------------------------------------------------- /data/tools/lib/smali-2.2.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/tools/lib/smali-2.2.5.jar -------------------------------------------------------------------------------- /data/tools/nix/aapt_miui_v7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/tools/nix/aapt_miui_v7 -------------------------------------------------------------------------------- /data/tools/nix/aapt_miui_v8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/tools/nix/aapt_miui_v8 -------------------------------------------------------------------------------- /data/tools/nix/aapt_romtype: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/tools/nix/aapt_romtype -------------------------------------------------------------------------------- /data/tools/nix/bsdiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/tools/nix/bsdiff -------------------------------------------------------------------------------- /data/tools/nix/lib/libc++.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/tools/nix/lib/libc++.so -------------------------------------------------------------------------------- /data/tools/osx/aapt_romtype: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/tools/osx/aapt_romtype -------------------------------------------------------------------------------- /data/tools/osx/bsdiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/tools/osx/bsdiff -------------------------------------------------------------------------------- /data/tools/win/aapt_romtype: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/tools/win/aapt_romtype -------------------------------------------------------------------------------- /data/tools/win/bsdiff.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/data/tools/win/bsdiff.exe -------------------------------------------------------------------------------- /jbart3h.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/jbart3h.jar -------------------------------------------------------------------------------- /runme_jar.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurgerZ/jBART/HEAD/runme_jar.bat --------------------------------------------------------------------------------