I\'ve searched posts for answers to my question but haven\'t found anything that solves my problem. I\'m trying to set 3 different alarms using one AlarmSettings class. When I
PendingIntent pendingIntent1 = PendingIntent.getActivity(getApplicationContext(), 0, intent1, PendingIntent.FLAG_ONE_SHOT);
change the 0 attribute to an id for your alarm, for example you have three alarms,
repeat the above code with 0,1,2.
this way they won't override each other.