I've created a few notification channels on my android app using:
val notificationManager = getSystemService(NOTIFICATION_SERVICE) as NotificationManager
notificationManager.createNotificationChannel(mChannel)
My question now is if it's possible to manage (enable/disable) notifications (and channels) inside the app or if we should always redirect the user to the android settings to manage that?
Examples: Can I completely disable notifications programatically? Can I do that only for a specific channel?