Commit bee9be53 authored by d8ahazard's avatar d8ahazard

Remove Magisk from app list

parent 4b49331d
...@@ -122,8 +122,10 @@ public class AutoRootFragment extends ListFragment { ...@@ -122,8 +122,10 @@ public class AutoRootFragment extends ListFragment {
for (ApplicationInfo info : list) { for (ApplicationInfo info : list) {
try { try {
if (null != packageManager.getLaunchIntentForPackage(info.packageName)) { if (null != packageManager.getLaunchIntentForPackage(info.packageName)) {
if (!info.packageName.contains("topjohnwu")) {
applist.add(info); applist.add(info);
} }
}
} catch (Exception e) { } catch (Exception e) {
e.printStackTrace(); e.printStackTrace();
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment