Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e98122ed authored by Justin Koh's avatar Justin Koh
Browse files

Hide new methods in notificationlistenerservice DO NOT MERGE

Hide new methods in notificationlistenerservice for now.
Bug: 14116162

Change-Id: Ib57fd2feff174ab8638bd172710873e9e2be553a
parent 6368a39d
Loading
Loading
Loading
Loading
+0 −3
Original line number Original line Diff line number Diff line
@@ -22768,11 +22768,8 @@ package android.service.notification {
    ctor public NotificationListenerService();
    ctor public NotificationListenerService();
    method public final void cancelAllNotifications();
    method public final void cancelAllNotifications();
    method public final void cancelNotification(java.lang.String, java.lang.String, int);
    method public final void cancelNotification(java.lang.String, java.lang.String, int);
    method public final void cancelNotifications(java.lang.String[]);
    method public android.service.notification.StatusBarNotification[] getActiveNotifications();
    method public android.service.notification.StatusBarNotification[] getActiveNotifications();
    method public android.service.notification.StatusBarNotification[] getActiveNotifications(java.lang.String[]);
    method public android.os.IBinder onBind(android.content.Intent);
    method public android.os.IBinder onBind(android.content.Intent);
    method public void onListenerConnected(java.lang.String[]);
    method public abstract void onNotificationPosted(android.service.notification.StatusBarNotification);
    method public abstract void onNotificationPosted(android.service.notification.StatusBarNotification);
    method public abstract void onNotificationRemoved(android.service.notification.StatusBarNotification);
    method public abstract void onNotificationRemoved(android.service.notification.StatusBarNotification);
    field public static final java.lang.String SERVICE_INTERFACE = "android.service.notification.NotificationListenerService";
    field public static final java.lang.String SERVICE_INTERFACE = "android.service.notification.NotificationListenerService";
+3 −0
Original line number Original line Diff line number Diff line
@@ -89,6 +89,7 @@ public abstract class NotificationListenerService extends Service {
     * at this time.
     * at this time.
     *
     *
     * @param notificationKeys The notification keys for all currently posted notifications.
     * @param notificationKeys The notification keys for all currently posted notifications.
     * @hide
     */
     */
    public void onListenerConnected(String[] notificationKeys) {
    public void onListenerConnected(String[] notificationKeys) {
        // optional
        // optional
@@ -155,6 +156,7 @@ public abstract class NotificationListenerService extends Service {
     * @param keys Notifications to dismiss, or {@code null} to dismiss all.
     * @param keys Notifications to dismiss, or {@code null} to dismiss all.
     *
     *
     * {@see #cancelNotification(String, String, int)}
     * {@see #cancelNotification(String, String, int)}
     * @hide
     */
     */
    public final void cancelNotifications(String[] keys) {
    public final void cancelNotifications(String[] keys) {
        if (!isBound()) return;
        if (!isBound()) return;
@@ -181,6 +183,7 @@ public abstract class NotificationListenerService extends Service {
     *
     *
     * @param keys A specific list of notification keys, or {@code null} for all.
     * @param keys A specific list of notification keys, or {@code null} for all.
     * @return An array of active notifications.
     * @return An array of active notifications.
     * @hide
     */
     */
    public StatusBarNotification[] getActiveNotifications(String[] keys) {
    public StatusBarNotification[] getActiveNotifications(String[] keys) {
        if (!isBound()) return null;
        if (!isBound()) return null;