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...![]()
It seems to fail at:I'm using last version 17.4.1 from @KreAch3R.
It seems to work although it reports failed during process. OnePlus 6, Android 9.
It's a little confusing.
Oh, I see. Well I incorporated your changes and pushed another commit: https://github.com/KreAch3R/terminal_systemizer/commit/bdcae1ea200f579cfe75999d76158da05216a7ad
I tried systemizing an installed app manually to trigger that part of the code and it worked. I uploaded the new version again.
@Anurag1994, great, thanks!
try aybe in priv apps?After moving the app to system, the app crashes when trying to open,
No errors in the terminal, if I revert the app it opens again.
Moto G play(2021)
What should I look for to debug why it's crashing?
Edit: the app is GPS Joystick, so not a banking app checking for root etc.
Edit2: seems it wants to be in system folder not the -priv one, moving it there I can open it, but it doesn't show up in the system application lost in settings.
The modified version that can works on Android 11 and Magisk 20.3+.
This does not work for me. For some reason the app list does not load and when I give package name it can’t find it.
This systemizes, which means it can not be uninstalled without being unsystemized. Here, you simply install the Magisk Systemize Module, and then doHi everyone. I really want to systemize an app on my phone to make it "uninstall-able" (the Freedom.to app blocker, to gain control over my digital consumption).
But Magisk seems to have changed a lot since this thread as started in 2017.
I genuinely don't understand the instructions in this Github repo: https://github.com/Magisk-Modules-Repo/terminal_systemizer
And my also confused as there is no zip file to download as I would expect from a Magisk module.
What's the updated way to "systemize" an app in 2022?
I would really appreciate. Thanks
su
systemize
What kind of errors?Does my system partion have to be writable for this? I get errors.
I try to install this module, but it does not appear in the application drawerView attachment 5809161
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?