Я использую уведомления с полноэкранным режимом. Мой код работает в Oreo
и ниже.
Но когда я бегу android-Q
, я получаю исключение
Use of fullScreenIntent requires the USE_FULL_SCREEN_INTENT permission
Я использую setFullScreenIntent()
для уведомлений в полноэкранном режиме
Вот мой код
NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this, "123");
notificationBuilder.setAutoCancel(true)
.setColor(ContextCompat.getColor(this, R.color.colorAccent))
.setContentTitle(getString(R.string.app_name))
.setContentText("Test")
.setDefaults(Notification.DEFAULT_ALL)
.setWhen(System.currentTimeMillis())
.setFullScreenIntent(pendingIntent,true)
.setSmallIcon(R.drawable.ic_launcher_background)
.setAutoCancel(true);
mNotificationManager.notify(1000, notificationBuilder.build());