[app] Remove duplicated android system
This commit is contained in:
parent
7fcd689192
commit
aa50e65cf1
|
|
@ -221,7 +221,10 @@ public class ScopeAdapter extends RecyclerView.Adapter<ScopeAdapter.ViewHolder>
|
|||
if (info.packageName.equals(BuildConfig.APPLICATION_ID)) {
|
||||
return true;
|
||||
}
|
||||
if (checkedList.contains(info.applicationInfo.uid) || info.packageName.equals("android")) {
|
||||
if (info.packageName.equals("android") && info.applicationInfo.uid / 100000 != 0) {
|
||||
return true;
|
||||
}
|
||||
if (checkedList.contains(info.applicationInfo.uid)) {
|
||||
return false;
|
||||
}
|
||||
if (!preferences.getBoolean("show_modules", false)) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue