앱 알림 설정이 on/off 확인 코드 NotificationManagerCompat.from(context).areNotificationsEnabled(); 앱 알림 설정 bordcastReceiver class BlockStateChangedReceiver : BroadcastReceiver() { override fun onReceive(context: Context, intent: Intent) { val blockedState = intent.getBooleanExtra(NotificationManager.EXTRA_BLOCKED_STATE, false) when (intent.action) { NotificationManager.ACTION_APP_BLOCK_STATE_CHANGED -> { ..