v1.5.0
版本发布时间: 2021-02-27 00:05:40
voxeet/voxeet-uxkit-cordova最新发布版本:v1.5.9(2022-12-08 02:32:59)
- 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("","");