1.4.14
Imported from Element 1.4.14. (https://github.com/vector-im/element-android/releases/tag/v1.4.14)
Bugfixes 🐛
- Fixes crash when accepting or receiving VOIP calls (#5421)
- Improve/fix crashes on messages decryption (#5592)
- Don't pause timer when call is held. (#5885)
SDK API changes ⚠️
- Added registrationCustom into RegistrationWizard to send custom auth params for sign up
- Moved terms converter into api package to make it accessible in sdk (#5575)
- Move package
org.matrix.android.sdk.api.pushrules
toorg.matrix.android.sdk.api.session.pushrules
(#5812) - Some
Session
apis are now available by requesting the service first. For instanceSession.updateAvatar(...)
is nowSession.profileService().updateAvatar(...)
- The shortcut
Room.search()
has been removed, you have to useSession.searchService().search()
(#5816) - Add return type to RoomApi.sendStateEvent() to retrieve the created event id (#5855)
Room
apis are now available by requesting the service first. For instanceRoom.updateAvatar(...)
is nowRoom.stateService().updateAvatar(...)
(#5858)- Remove unecessary field
eventId
fromEventAnnotationsSummary
andReferencesAggregatedSummary
(#5890) - Replace usage of
System.currentTimeMillis()
by aClock
interface (#5907)