Releases: voxeet/voxeet-uxkit-cordova
Releases · voxeet/voxeet-uxkit-cordova
v1.5.9
v1.5.7
Release 1.5.7 containing improvements for iOS and mostly Android
Android
- fix for Android 32 support in the play store (no need for custom modification in the parent's Cordova project)
- uses Android SDK 3.7.1 and support with the UXKit
- changed for the UXKit's common module
iOS
- uses UXKit 1.6.5
- SDK 3.3.3
iOS bump to 3.3.3
iOS Bump SDK to 3.3.3 and UXKit to 1.6.4
v1.5.5
v1.5.4
v1.5.3: Merge pull request #57 from voxeet/develop
Javascript :
- Restore possibility to use
VoxeetSDK
,UserInfo
andVoxeetMedia
from global variable. Deprecated1.5.0
subinjection (UserInfo.UserInfo and VoxeetMedia.VoxeetMedia to transpilation)
Android :
- change deprecated usage to expected join method
- bump to 3.1.1
- voxeet_application.js compatibility with Capacitor apps
iOS :
- bump iOS SDK to 3.1.6 and iOS UXKit to 1.4.8
v1.5.2
v1.5.1
v1.5.0
- Changing main object from the cordova injection from
VoxeetSDK
toVoxeetCordova
- use
const { VoxeetSDK } = VoxeetCordova
orconst { VoxeetSDK } = window.VoxeetCordova
- UserInfo and all other configuration are part of the VoxeetCordova object
- previously implemented minimize and maximize methods
Example :
If you had previously
const { Voxeet } = VoxeetSDK;
await Voxeet.initialize("","");
You need to have
const { VoxeetSDK } = VoxeetCordova;
await VoxeetSDK.initiliaze("","");