- Error on install dependencies using NPM
- Closes #47
- Error on build in RN 0.69+
- Closes #44
- Example project now uses RN 0.69.0
- New RN version compiling exceptions
- Closes #42
- Example project RN dependency updated to 0.68.1
- RN peer dependency updated to 0.68.1
- Gradle version must be greater than or equal 7.0.0
- Fix Gradle 7.0 breaking changes
- Fixed missing README on npm
- Linting improvements
- Now example project also is written in typescript
- Improved project folders structure
- Now the example project has a prepare.js file used to set up the project for testing. Just follow this instructions
- RN peer dependency updated to 0.65.1
- Also updated example project RN's version
- The extra key
EXTRA_SMALL_ICON
is deprecated and because of that was unable to build the project so this key was removed.
- Added support for large icon
- This feature closes #21
@arunahuja94
- Fixed
groupedMessages
being passed always empty to the notification listener
@arunahuja94
- Add
time
,icon
, andimage
properties to the notification payload- NOTE 1: The
image
may not work for some apps such as Telegram and WhatsApp - NOTE 2: The
icon
andimage
is passed as base64 string
- NOTE 1: The
- Add more properties to the notification payload. You can see all of them in the documentation here.
Now the notification received by the handler function was changed to a JSON string payload so before using you must do JSON.parse
. You can see more in the documentation here.
@arunahuja94
- Add Headless JS service to avoid the notification listener to be killed by Android
- Add Boot Up Receiver to restart the service in case the user reboots the device as soon the OS restart
- Add index.d.ts to provide some typings
- Removed the method
onNotificationReceived
because now the handle must be made using theAppRegistry
. (See the documentation here)
@jehartzog
- Fixed some java syntax error about missing comma
- Fixed crashing application on Android 8+
- Closes #1
@qsdamar
- Fix crashing application on receiving notification
- Add publishing with GitHub Actions
- First version