안녕하세요? 매일 저녁 10시쯤 알림을 발생하기 위해서 다음과 같은 코드를 작성했는데,
작동하지 않네요 ㅜㅜ

Context context = getApplicationContext();
Calendar calendar = Calendar.getInstance();
calendar.setTimeInMillis(System.currentTimeMillis());

calendar.set(Calendar.HOUR_OF_DAY, 22);
calendar.set(Calendar.MINUTE, 0);
calendar.set(Calendar.SECOND, 0);

AlarmManager alarmManager= (AlarmManager)getSystemService(ALARM_SERVICE);
PendingIntent pendingIntent = PendingIntent.getService(Settings.this, 0, new Intent(Settings.this, EventAlarmManager.class), 0);
    
alarmManager.setInexactRepeating(AlarmManager.RTC_WAKEUP, calendar.getTimeInMillis(), AlarmManager.INTERVAL_DAY, pendingIntent);

답변 부탁드립니다. 그럼 좋은 하루 되세요~ ^^