Updates for msg apps that don't use shortcuts

- Notice on app specific page
- No individual conversation bubble controls

Test: manual
Bug: 154814754
Change-Id: I74c291890ba6203e6a3a162fc0c0335ed5eba3d4
This commit is contained in:
Julia Reynolds
2020-04-26 19:14:31 -04:00
parent da9e2099de
commit 8fe4b28312
5 changed files with 37 additions and 2 deletions

View File

@@ -268,6 +268,15 @@ public class NotificationBackend {
}
}
public boolean hasSentMessage(String pkg, int uid) {
try {
return sINM.hasSentMessage(pkg, uid);
} catch (Exception e) {
Log.w(TAG, "Error calling NoMan", e);
return false;
}
}
/**
* Returns all notification channels associated with the package and uid that will bypass DND
*/