I wrote a service to call pending intent after 1 minute
code:
AlarmManager alarms = (AlarmManager) context.getSystemService(Context.ALARM_SERVICE);
alarms.setRepeating(AlarmManager.RTC_WAKEUP, cal.getTimeInMillis(),
60 * 1000, pendingIntent);
this code works properly on all devices except samsung j5.Where it calls service after 5 minutes.
Please let me know what could be the possible reason for this issue.