I want to implement stacked notifications on Android Wear To do that I create 1 summary notification and N individual notifications for each \"item\". I want only the summar
Fixed this by using
NotificationManagerCompat notificationManager = NotificationManagerCompat.from(this);
instead of
NotificationManager notificationManager = (NotificationManager)getSystemService(Context.NOTIFICATION_SERVICE);
and replacing NotificationManager with NotificationManagerCompat in corresponding method signatures.