Releases: sendbird/sendbird-uikit-react-native
Releases · sendbird/sendbird-uikit-react-native
v3.9.4
v3.9.3
v3.9.2
v3.9.1
3.9.1 (2025-04-15)
Release notes
- Support for Android policy compliance
-
In Android + Expo environments, if your app does not use the READ_MEDIA_IMAGES, READ_MEDIA_AUDIO and READ_MEDIA_VIDEO permissions, you must explicitly exclude them using android.blockedPermissions in your Expo configuration (app.json).
"android": { "blockedPermissions": [ "android.permission.READ_MEDIA_IMAGES", "android.permission.READ_MEDIA_VIDEO", "android.permission.READ_MEDIA_AUDIO", ] }
-
Improvements
- bump minimum expo-media-library version for android policy compliance (71fedf0)
v3.9.0
v3.8.6
v3.8.4
v3.8.3
v3.8.2
v3.8.1
3.8.1 (2024-11-28)
Release notes
-
Added fallback for deleted emoji icons
Fixed a crash that occurred when a reaction emoji was deleted and could not be found. A question mark icon will now appear as a fallback in such cases. -
Support for hiding user ids in mention suggestions
Added an option to hide user IDs in the mention suggestion list. It can be used as shown below:const module = createGroupChannelModule(); const GroupChannelFragment = createGroupChannelFragment({ SuggestedMentionList: (props) => <module.SuggestedMentionList {...props} showUserId={false} />, });
Changelogs
Features
- added showUserId config to suggested mention list (5f7c6af)
Bug Fixes
- add emoji fallback icon (3d30123)