Skip to content

Commit 3e518c1

Browse files
committed
Add version 2.2.1
1 parent 6e16d97 commit 3e518c1

File tree

4 files changed

+13
-25
lines changed

4 files changed

+13
-25
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## [2.2.1]
2+
3+
### Fixed
4+
5+
* [iOS] Fixed possible archive issue with React Native versions older than 0.60.
6+
* [Android] Fixed "Can only use lower 16 bits for requestCode" exception.
7+
18
## [2.2.0]
29

310
### Added

android/src/main/java/ly/img/react_native/vesdk/RNVideoEditorSDKModule.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ import java.io.File
3232
class RNVideoEditorSDKModule(reactContext: ReactApplicationContext) : ReactContextBaseJavaModule(reactContext), ActivityEventListener, PermissionListener {
3333
companion object {
3434
// This number must be unique. It is public to allow client code to change it if the same value is used elsewhere.
35-
var EDITOR_RESULT_ID = 489313434
35+
var EDITOR_RESULT_ID = 29065
3636
}
3737

3838
init {

ios/RNVideoEditorSDK.xcodeproj/project.pbxproj

Lines changed: 4 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,8 @@
77
objects = {
88

99
/* Begin PBXBuildFile section */
10-
3D36218D23D0BF1700C8329C /* RNImglyKit.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DDD535223686AF2002248D3 /* RNImglyKit.h */; settings = {ATTRIBUTES = (Public, ); }; };
11-
3D36218E23D0BF1C00C8329C /* RNVideoEditorSDK.h in Headers */ = {isa = PBXBuildFile; fileRef = B3E7B5881CC2AC0600A0062D /* RNVideoEditorSDK.h */; settings = {ATTRIBUTES = (Public, ); }; };
12-
3D36218F23D0BF2000C8329C /* RNImgly.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D88A14523C876450056EEDA /* RNImgly.h */; };
13-
3D36219023D0BF2300C8329C /* RNImglyKitSubclass.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DDD535323686AF2002248D3 /* RNImglyKitSubclass.h */; };
14-
3D36219123D0BFD800C8329C /* RNImglyKit.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 3DDD535223686AF2002248D3 /* RNImglyKit.h */; };
15-
3D36219223D0BFD800C8329C /* RNVideoEditorSDK.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = B3E7B5881CC2AC0600A0062D /* RNVideoEditorSDK.h */; };
10+
3DA3FC1C23D5B73100A31382 /* RNImglyKit.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 3DDD535223686AF2002248D3 /* RNImglyKit.h */; };
11+
3DA3FC1D23D5B73300A31382 /* RNVideoEditorSDK.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = B3E7B5881CC2AC0600A0062D /* RNVideoEditorSDK.h */; };
1612
3DDD535423686AF2002248D3 /* RNImglyKit.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DDD535123686AF2002248D3 /* RNImglyKit.m */; };
1713
B3E7B58A1CC2AC0600A0062D /* RNVideoEditorSDK.m in Sources */ = {isa = PBXBuildFile; fileRef = B3E7B5891CC2AC0600A0062D /* RNVideoEditorSDK.m */; };
1814
/* End PBXBuildFile section */
@@ -24,8 +20,8 @@
2420
dstPath = "include/$(PRODUCT_NAME)";
2521
dstSubfolderSpec = 16;
2622
files = (
27-
3D36219123D0BFD800C8329C /* RNImglyKit.h in CopyFiles */,
28-
3D36219223D0BFD800C8329C /* RNVideoEditorSDK.h in CopyFiles */,
23+
3DA3FC1C23D5B73100A31382 /* RNImglyKit.h in CopyFiles */,
24+
3DA3FC1D23D5B73300A31382 /* RNVideoEditorSDK.h in CopyFiles */,
2925
);
3026
runOnlyForDeploymentPostprocessing = 0;
3127
};
@@ -75,26 +71,11 @@
7571
};
7672
/* End PBXGroup section */
7773

78-
/* Begin PBXHeadersBuildPhase section */
79-
3D36218C23D0BEF500C8329C /* Headers */ = {
80-
isa = PBXHeadersBuildPhase;
81-
buildActionMask = 2147483647;
82-
files = (
83-
3D36218D23D0BF1700C8329C /* RNImglyKit.h in Headers */,
84-
3D36218E23D0BF1C00C8329C /* RNVideoEditorSDK.h in Headers */,
85-
3D36218F23D0BF2000C8329C /* RNImgly.h in Headers */,
86-
3D36219023D0BF2300C8329C /* RNImglyKitSubclass.h in Headers */,
87-
);
88-
runOnlyForDeploymentPostprocessing = 0;
89-
};
90-
/* End PBXHeadersBuildPhase section */
91-
9274
/* Begin PBXNativeTarget section */
9375
58B511DA1A9E6C8500147676 /* RNVideoEditorSDK */ = {
9476
isa = PBXNativeTarget;
9577
buildConfigurationList = 58B511EF1A9E6C8500147676 /* Build configuration list for PBXNativeTarget "RNVideoEditorSDK" */;
9678
buildPhases = (
97-
3D36218C23D0BEF500C8329C /* Headers */,
9879
58B511D71A9E6C8500147676 /* Sources */,
9980
58B511D81A9E6C8500147676 /* Frameworks */,
10081
58B511D91A9E6C8500147676 /* CopyFiles */,

package.json

Lines changed: 1 addition & 1 deletion
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": "2.2.0",
4+
"version": "2.2.1",
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",

0 commit comments

Comments
 (0)