Skip to content

Commit e953310

Browse files
committed
Add version 3.3.0
1 parent 2fd4356 commit e953310

File tree

3 files changed

+13
-7
lines changed

3 files changed

+13
-7
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## [3.3.0]
2+
3+
### Changed
4+
5+
* [react-native-imglysdk] Removed `@expo/config-plugins` dependency.
6+
7+
### Fixed
8+
9+
* Fixed potential crash from `unlockWithLicense` if new architecture is enabled.
10+
111
## [3.2.0]
212

313
### Changed

index.js

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -203,11 +203,7 @@ class VESDK {
203203
* resolved by the packager.
204204
*/
205205
static unlockWithLicense(license) {
206-
if (Platform.OS == 'android') {
207-
return RNVideoEditorSDK.unlockWithLicense(JSON.stringify(license));
208-
} else {
209-
return RNVideoEditorSDK.unlockWithLicense(license);
210-
}
206+
return RNVideoEditorSDK.unlockWithLicense(JSON.stringify(license));
211207
}
212208
}
213209

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "react-native-videoeditorsdk",
33
"title": "React Native module for VideoEditor SDK",
4-
"version": "3.2.0",
4+
"version": "3.3.0",
55
"description": "A React Native module for VideoEditor SDK. Integrate the video editor into your own HTML5, iOS or Android app - in minutes!",
66
"main": "index.js",
77
"typings": "index.d.ts",
@@ -35,6 +35,6 @@
3535
"react-native": ">=0.60.0 <1.0.x"
3636
},
3737
"dependencies": {
38-
"react-native-imglysdk": "3.2.0"
38+
"react-native-imglysdk": "3.3.0"
3939
}
4040
}

0 commit comments

Comments
 (0)