Release 1.0.0
1.0.0 (2024-06-02)
Starting from Android 12, the incoming call notification UI will resemble the one depicted here: https://developer.android.com/develop/ui/views/notifications/call-style
Features
- Add new prop isVideo for incoming style, improve document (fee31f8)
- Implement incoming call style (e2d265c)
- Update android target 34, update rn version to 0.74, implement call style, clean code (1039140)
- Add new permission to Androidmanifest for targetSdkVersion 34
<!--add new-->
<uses-permission android:name="android.permission.CALL_PHONE" />
...
<service
...
<!--add new-->
android:foregroundServiceType="phoneCall"
/>
BREAKING CHANGES
- Renamed type interfaces for consistency:
foregroundOptionsModel
interface is nowForegroundOptionsModel
customIncomingActivityProps
interface is nowCustomIncomingActivityProps
answerPayload
interface is nowAnswerPayload
declinePayload
interface is nowDeclinePayload
- Event listeners for and events have been updated to use the new types.
Ensure to update your implementation accordingly.
Updated README with new usage examples and guidelines.
0.1.12 (2023-04-09)
0.1.10 (2023-03-11)
0.1.9 (2023-01-19)
Features
- Custom notification sound (fc8d20d)