I tried to create a Notification with this Code:
private void setNotificationAlarm(Context context) { Intent intent = new Intent(getApplicationContext()
You use Notification.Builder to build the notification now and the pending intent needs to be PendingIntent.getBroadcast()
Notification.Builder
PendingIntent.getBroadcast()