blob: 92ffdccb50f060d444699630f321515410abee70 (
plain)
1
2
3
4
5
6
7
8
|
package com.android.server.notification;
import android.app.Notification;
public interface NotificationManagerInternal {
void enqueueNotification(String pkg, String basePkg, int callingUid, int callingPid,
String tag, int id, Notification notification, int[] idReceived, int userId);
}
|