Guide A known Good Method to Hide Your Root For Most Apps

Islam Issa

New member
Junior
DISCLAIMER


// Your warranty is now void.
// I am not responsible for bricked devices, dead SD cards,
//thermonuclear war, or you getting fired because the alarm app failed.
// Please do some research before flashing.
// YOU chose to make these modifications.
// If you blame me for anything, I will laugh at you.



First of all iam a magisk user and iam not a developer and never claimed to be one so proceed with this on your own



1-Magisk Alpha latest version >> official link App Center

2-Zygisk-Next latest version >> official link Telegram Post

3-Shamiko latest version (recommended whitelistmode) >> official link Telegram Post

4-play integrity fork by osmosis >> official link Github Repo

5-Tricky_Store >> official link Telegram Post

6-Lsposed Internal Test Version >> ((Leaked Version)) Telegram Post

7-HMA app latest version >> official link Telegram Post

8-Valid BeeBox >> Use BeeBox From the main thread of the forums or use your own

9-this script to allocate all of your user installed apps into one target.txt file (don't use extra modules to achieve this,just change the random package name in line 12) >>

Code:
#!/bin/bash

# Add the two specific packages to the target file first
echo "android" > ./target.txt
echo "com.google.android.gms" >> ./target.txt
echo "com.android.vending" >> ./target.txt

# Process the remaining packages and append them sorted to target.txt
pm list packages -3 | sed 's/package://g' | while read pkg; do
    app_path=$(pm path "$pkg" | sed 's/package://')
    app_name=$(aapt dump badging "$app_path" 2>/dev/null | grep "application-label" | awk -F"'" '{print $2}' | uniq)
    if [[ "$app_name" != "your random package name here" && "$pkg" != "com.google.android.gsf" && "$pkg" != "com.google.android.gms" && "$pkg" != "com.android.vending" ]]; then
        echo "$pkg"
    fi
done | sort >> ./target.txt

exit

Steps:
1-install magisk <don't ask how>
2-use random package name in Magisk <don't ask how>
3-install your modules<no need to tell you how to breathe>
4-add only unstable package from gms app in denylist in magisk if you are using shamiko in whitelist mode
5-run this command in pif fork module dir >> sh autopif2.sh -s -p
6-if you are using apps wich detect delprop modifications just create a file in pif fork module dir and name it skipdelprop
7-enable hma in lsposed don't add extra apps in scope just enable and restart
8-use hma to hide apps from you desire apps >> ask chatgpt it have brain better than most humans i know on Telegram
9-be useful and stop being an idiot and stop testing your beebox every single minute please you make google block it faster
thanks for reading
 
Back
Top