Anything compatible w/ A12 & Magisk 25.1? (with no twrp...using FKM file flasher.)
I'd kill for a 'simple' apk with tick boxes to select...
I'd kill for a 'simple' apk with tick boxes to select...

I've used this version in CrDroid 12.1 and Magisk 25.1 it works as it should.Anything compatible w/ A12 & Magisk 25.1? (with no twrp...using FKM file flasher.)
I'd kill for a 'simple' apk with tick boxes to select...![]()
systemize
systemize -nc
systemize -a com.oasisfeng.greenify org.adaway
systemize -d /sdcard/example.apk /sdcard/example2.apk
Sorry wrong line numbers, should be 315 and 559.
It's basically the same path fix as you did before, I just hardcoded it without if-clause for my personal use.
I have no time to publish it at the moment, otherwise I had done it already. (and I rarely use my github account at the moment).
Line 315 can be replaced with:
and line 559 with:Code:[ $API -lt 30 ] && systemize /system/$installdir /data/app/${apklabel}-*/base.apk [ $API -ge 30 ] && systemize /system/$installdir /data/app/*/${apklabel}-*/base.apk
Code:[ $API -lt 30 ] && app_path="/data/app/${i}-*/base.apk" [ $API -ge 30 ] && app_path="/data/app/*/${i}-*/base.apk" [ -d $SYSTEM/priv-app ] && systemize /system/priv-app "${app_path}" || systemize /system/app "${app_path}" "$i"
This is not tested, but it should work.
No, it's like when you update a system app from play store, it stays as a system app.When a systemizied app is updated, how do you re-systemize it? Do you just rerun the terminal UI and choose the updated app and reboot? After reboot, does the updated app replace the old one?