Why Isn't My Alarm Going Off? (android)
My alarm does not go off at the specific time or at all (I have tried setting it to one minute of current time). I have made sure that setAlarm() is going off because the log Log.d
Solution 1:
Changed PendingIntent alarmIntent = PendingIntent.getActivity(MainActivity.this, 0, intent, 0);
to PendingIntent alarmIntent = PendingIntent.getService(MainActivity.this, 0, intent, 0);
Post a Comment for "Why Isn't My Alarm Going Off? (android)"