Public notification channel API
arturdryomov opened this issue · 1 comments
arturdryomov commented
We have a following use-case.
- We have a defined set of notification channels. I. e.
A
,B
,Promotions
. - When sending a notification via the web UI we are not specifying any channels.
- When the notification arrives to the mobile client we want the notification to appear in the
Promotions
channel.
Basically what we need is to have LeanplumNotificationChannel
to be exposed as public
instead of package-local (as it is now). This way we can call the configureDefaultNotificationChannel
method and set it to our Promotions
channel.
Is it possible to do that? Are there any other ways to do that?
Stenopolz commented
We have pretty same use case. We're updating our app to get ready for targetSdk 26, and notification channels are a must. Probably any plans about exposing LeanplumNotificationChannel
?