Disallow user to block notification from OobConfig

Change-Id: I4680e5c5b596e81ac33d544d0d81de9df3b7587c
Fix: 29632126
This commit is contained in:
Tony Mak
2016-07-14 15:32:26 +08:00
parent 981e9a96dc
commit 6ba9e15c4a
2 changed files with 3 additions and 13 deletions

View File

@@ -59,7 +59,7 @@ public class NotificationBackend {
public AppRow loadAppRow(Context context, PackageManager pm, PackageInfo app) {
final AppRow row = loadAppRow(context, pm, app.applicationInfo);
row.systemApp = Utils.isSystemPackage(pm, app);
row.systemApp = Utils.isSystemPackage(context.getResources(), pm, app);
return row;
}