
1. Importance 채널 생성에 앞서 Importance에 따른 채널 중요도를 설정할 수 있다. 여기서 중요한 점은 헤드업 알람의 유무 2. 인자 id : 임의의 채널 id name : 알람 이름 importance level : 알람 중요도 3. 순서 Channel과 NotificationManager 초기화 후 마지막에 .createNotificationChannel을 해야한다. 4. 코드 if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) { NotificationManager notificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE); Notific..