I have read this question : How to check if AlarmManager already has an alarm set?
And the Chris Knight answer is the most correct answer maybe. But i didn't understand in boolean line :
boolean alarmUp = (PendingIntent.getBroadcast(context, 0,
new Intent("com.my.package.MY_UNIQUE_ACTION"), <--------?
PendingIntent.FLAG_NO_CREATE) != null);
Where is "com.my.package.MY_UNIQUE_ACTION" coming from ?
Is it from manifest or what ?
I'm sorry for duplicating.