-
-
Couldn't load subscription status.
- Fork 744
Description
I'm looking to improve SD Maids CorpseFinder and need help with a few rooted Android 16 ROMs.
You can help if you have Android 16 on a rooted device that is not running a Pixel or AOSP ROM (e.g. Samsung, OnePlus or something with MIUI or HyperOS like Xiaomi, Redmi, Poco etc).
The CorpseFinder is currently not fully enabled for rooted devices on Android 16. To enable all functionality i need to see more directory layouts for non AOSP ROMs.
You can help me if you run this command and upload the logfile here or mail it to [email protected] (while referencing this ticket).
The commands create logfiles on your sdcard that contains your ROM type and the folder structure of specific paths, up to the packagenames of the installed apps.
You can copy it into a root shell (termux?) or run it via adb ( adb shell + su).
For /data/user:
(getprop ro.build.fingerprint; find /data/user -mindepth 1 -maxdepth 2 -print0 | xargs -0 ls -ld) > /sdcard/data_user.txtFor /data/user_de:
(getprop ro.build.fingerprint; find /data/user_de -mindepth 1 -maxdepth 2 -print0 | xargs -0 ls -ld) > /sdcard/data_user_de.txtFor /data/app:
(getprop ro.build.fingerprint; find /data/app -mindepth 1 -maxdepth 4 -print0 | xargs -0 ls -ld) > /sdcard/app_layout.txtFor /data_mirror:
(getprop ro.build.fingerprint; find /data_mirror -mindepth 1 -maxdepth 4 -print0 | xargs -0 ls -ld) > /sdcard/data_mirror_layout.txtFor /data/dalvik-cache:
(getprop ro.build.fingerprint; find /data/dalvik-cache -mindepth 1 -maxdepth 4 -print0 | xargs -0 ls -ld) > /sdcard/dalvik-cache_layout.txt