Android alarmManager.setAlarmClock Crash Android 7
问题 I am getting a crash (on android 7 only) when calling alarmmanager.setAlarmClock in a function where i am setting alarm. I have no idea what is wrong here. And how to fix this crash. This is the function which is getting crash when calling alarmManager.setAlarmClock fun setBeforeAlert( context: Context, offset: Long, beforeMin: Int, pendingIntent: PendingIntent ) { if (offset - beforeMin * 60 * 1000 > 0) { val alarmManager = context.getSystemService(Context.ALARM_SERVICE) as AlarmManager if