Add 'Recent Conversations' to the conversation page

Test: atest
Bug: 171191376
Change-Id: Id7208312dff0cc022c2f16b3872fae1a9dc09ed7
This commit is contained in:
Julia Reynolds
2020-10-19 16:21:23 -04:00
parent 2e49b2e639
commit 0aef57d67e
11 changed files with 711 additions and 12 deletions

View File

@@ -541,6 +541,15 @@ public class NotificationBackend {
}
}
public void createConversationNotificationChannel(String pkg, int uid,
NotificationChannel parent, String conversationId) {
try {
sINM.createConversationNotificationChannelForPackage(pkg, uid, parent, conversationId);
} catch (Exception e) {
Log.w(TAG, "Error calling NoMan", e);
}
}
public ShortcutInfo getConversationInfo(Context context, String pkg, int uid, String id) {
LauncherApps la = context.getSystemService(LauncherApps.class);