Slide 85
Slide 85 text
extended
val fullScreenIntent = Intent(this, CallActivity::class.java)
val fullScreenPendingIntent = PendingIntent.getActivity(this, 0,
fullScreenIntent, PendingIntent.FLAG_UPDATE_CURRENT)
val notiCcationBuilder = NotiCcationCompat.Builder(this, CHANNEL_ID)
.setSmallIcon(R.drawable.notiCcation_icon)
.setContentTitle("Incoming call")
.setContentText("(919) 555-1234")
.setPriority(NotiCcationCompat.PRIORITY_HIGH)
.setCategory(NotiCcationCompat.CATEGORY_CALL)
.setFullScreenIntent(fullScreenPendingIntent, true)
val incomingCallNotiCcation = notiCcationBuilder.build()