Patcher Addon: likewise

merge-requests/23/head
Christopher Roy Bratusek 6 years ago
parent 9c4d0f8b02
commit 14d12f9a54

@ -44,6 +44,10 @@
* function to detect whether ROM is pre-patched @ale5000
* re-add UnifiedNlp patch by Tom Vincent
* Patcher Addon
* if the ROM is pre-patched with FAKE_PACKAGE_SIGNATURE don't do anything
* function to detect whether ROM is pre-patched @ale5000
* Uninstaller
* when restoring a backup of `services.jar` look for new-style named backup

@ -49,6 +49,11 @@ NanoDroidPatcher () {
rm -rf ${BASEDIR}/${artifact}
done
if search_fake_package_signature; then
ui_print " ROM has native signature spoofing already!"
exit 0
fi
detect_sdk
detect_arch
detect_odex

Loading…
Cancel
Save