This differential implements native method to create android notification channel, updates JavaScript type and uses it JavaSCript code.
Details
Since API level 26 all notifications must be assigned to a channel: https://developer.android.com/develop/ui/views/notifications/channels, I presume that simply ensuriing notifications are
delivered both in the foreground and background is enough to test this differential.
Diff Detail
- Repository
- rCOMM Comm
- Lint
Lint Not Applicable - Unit
Tests Not Applicable
Event Timeline
native/push/android.js | ||
---|---|---|
11 ↗ | (On Diff #21290) | The object returned here should be $ReadOnly |
native/android/app/src/main/java/app/comm/android/notifications/CommAndroidNotifications.java | ||
---|---|---|
69 ↗ | (On Diff #21290) | What would happen for older clients? Does the fact that channels can't be created will be somehow detectable by the user? |
80–83 ↗ | (On Diff #21290) | I'd try to use Map.of but I guess this is how it's usually done |
native/push/push-handler.react.js | ||
144 ↗ | (On Diff #21290) | Can we keep the description? Does it matter? |
native/android/app/src/main/java/app/comm/android/notifications/CommAndroidNotifications.java | ||
---|---|---|
69 ↗ | (On Diff #21290) | Looking at the Figure no.1 here: https://developer.android.com/develop/ui/views/notifications/channels we can conclude that channels are intended to create various types of notifications that can have different settings - like whether they make sound or just pop on the screen etc. User can then modify settings for whichever channel they want - for instance they can block notifications from one channel while other channels of the same app are delivering notifications. Also when user grants or removes privilege for a channel our app can't modify those settings. It looks like it is a significant UI feature of newer android versions. Older clients will still have notifications functionality but without channels - so they turn off/on all notifications for an application at once. |
80–83 ↗ | (On Diff #21290) | This is how react-native guides wrote this code snippet: https://reactnative.dev/docs/native-modules-android#exporting-constants |
native/push/push-handler.react.js | ||
144 ↗ | (On Diff #21290) | I will bring it back. It is not fatal mistake, but it is description that appears under channel's name in application notification settings. I will bring it back, by extending arguments list in this native function. |
native/android/app/src/main/java/app/comm/android/notifications/CommAndroidNotifications.java | ||
---|---|---|
80–83 ↗ | (On Diff #21290) | It's usually done this way because Map.of is Java 9+ but RN targeted Java 8 |
Brindg back channel name to Default, Default_1 was artifact from debugging I forgot to remove