From f02616f3975fbfb91ebfc2877e7d4d1cb80661fc Mon Sep 17 00:00:00 2001 From: John Spurlock Date: Mon, 24 Mar 2014 18:02:43 -0400 Subject: [PATCH] Settings: Implement new required method. Only required since it uses the non-public version of the api. Bug:13562828 Change-Id: I63230962ac886465b3a1a2721e65b1d3fac33707 --- src/com/android/settings/NotificationStation.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/com/android/settings/NotificationStation.java b/src/com/android/settings/NotificationStation.java index 10457b92132..5083e27d810 100644 --- a/src/com/android/settings/NotificationStation.java +++ b/src/com/android/settings/NotificationStation.java @@ -70,6 +70,10 @@ public class NotificationStation extends SettingsPreferenceFragment { }; private INotificationListener.Stub mListener = new INotificationListener.Stub() { + @Override + public void onListenerConnected(String[] notificationKeys) throws RemoteException { + // noop + } @Override public void onNotificationPosted(StatusBarNotification notification) throws RemoteException { Log.v(TAG, "onNotificationPosted: " + notification);