android - how to set repeating time in setExact() function of alarm manager -
everyone here saying use setexact api level 19 , higher couldn't find how set repeating time in repeated again @ specified time. so please tell me how set repeating time in setexact method? here code calendar calendar2,calendar,cal,cal2; calendar = new gregoriancalendar(); calendar2 = new gregoriancalendar(); calendar2.settimeinmillis(system.currenttimemillis()); calendar.settimeinmillis(system.currenttimemillis()); cal = new gregoriancalendar(); cal2 = new gregoriancalendar(); cal.add(calendar.day_of_year, calendar.get(calendar.day_of_year)); cal.set(calendar.hour_of_day, 10); cal.set(calendar.minute, 0); cal.set(calendar.second, calendar.get(calendar.second)); cal.set(calendar.millisecond, calendar.get(calendar.millisecond)); cal.set(calendar.date, calendar.get(calendar.date)); cal.set(calendar.month, calendar.get(calendar.month)); alarmmanager alar...