how to repeat alarm after 1 day in android
I m using the alarm manager in my app and i want to repeat alarm after one day. the alarm should be invoked after one day when invoked once by time.Please help. Thanks in advance. if(str_freqSchedule.equals(checkForDaily)){ Calendar calendar = Calendar.getInstance(); //calendar.set(Calendar.DAY_OF_YEAR, calendar.get(Calendar.DAY_OF_YEAR)); calendar.set(Calendar.HOUR_OF_DAY, hr); calendar.set(Calendar.MINUTE, min); calendar.set(Calendar.SECOND,0); Intent intent = new Intent(this, AlarmReceiverActivity.class); PendingIntent pendingIntent = PendingIntent.getBroadcast( this.getApplicationContext()