Skip to content

Commit ac61f15

Browse files
committed
Add version 2.2.1
1 parent a6e1787 commit ac61f15

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/pesdk/RNPhotoEditorSDKModule.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ class RNPhotoEditorSDKModule(val reactContext: ReactApplicationContext) : ReactC
3535

3636
companion object {
3737
// This number must be unique. It is public to allow client code to change it if the same value is used elsewhere.
38-
var EDITOR_RESULT_ID = 489313435
38+
var EDITOR_RESULT_ID = 29064
3939
}
4040

4141
init {

ios/RNPhotoEditorSDK.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-
3D36216923D0B97E00C8329C /* RNImgly.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D88A14423C875FD0056EEDA /* RNImgly.h */; };
11-
3D36216A23D0B98300C8329C /* RNImglyKitSubclass.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DDD534D23686ADA002248D3 /* RNImglyKitSubclass.h */; };
12-
3D36216B23D0B98600C8329C /* RNImglyKit.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DDD534E23686ADA002248D3 /* RNImglyKit.h */; settings = {ATTRIBUTES = (Public, ); }; };
13-
3D36216C23D0B98900C8329C /* RNPhotoEditorSDK.h in Headers */ = {isa = PBXBuildFile; fileRef = B3E7B5881CC2AC0600A0062D /* RNPhotoEditorSDK.h */; settings = {ATTRIBUTES = (Public, ); }; };
14-
3D36218A23D0BEDA00C8329C /* RNImglyKit.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 3DDD534E23686ADA002248D3 /* RNImglyKit.h */; };
15-
3D36218B23D0BEDA00C8329C /* RNPhotoEditorSDK.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = B3E7B5881CC2AC0600A0062D /* RNPhotoEditorSDK.h */; };
10+
3DA3FC1A23D5B70400A31382 /* RNImglyKit.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 3DDD534E23686ADA002248D3 /* RNImglyKit.h */; };
11+
3DA3FC1B23D5B70800A31382 /* RNPhotoEditorSDK.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = B3E7B5881CC2AC0600A0062D /* RNPhotoEditorSDK.h */; };
1612
3DDD535023686ADA002248D3 /* RNImglyKit.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DDD534F23686ADA002248D3 /* RNImglyKit.m */; };
1713
B3E7B58A1CC2AC0600A0062D /* RNPhotoEditorSDK.m in Sources */ = {isa = PBXBuildFile; fileRef = B3E7B5891CC2AC0600A0062D /* RNPhotoEditorSDK.m */; };
1814
/* End PBXBuildFile section */
@@ -24,8 +20,8 @@
2420
dstPath = "include/$(PRODUCT_NAME)";
2521
dstSubfolderSpec = 16;
2622
files = (
27-
3D36218A23D0BEDA00C8329C /* RNImglyKit.h in CopyFiles */,
28-
3D36218B23D0BEDA00C8329C /* RNPhotoEditorSDK.h in CopyFiles */,
23+
3DA3FC1A23D5B70400A31382 /* RNImglyKit.h in CopyFiles */,
24+
3DA3FC1B23D5B70800A31382 /* RNPhotoEditorSDK.h in CopyFiles */,
2925
);
3026
runOnlyForDeploymentPostprocessing = 0;
3127
};
@@ -75,26 +71,11 @@
7571
};
7672
/* End PBXGroup section */
7773

78-
/* Begin PBXHeadersBuildPhase section */
79-
3D36216823D0B95F00C8329C /* Headers */ = {
80-
isa = PBXHeadersBuildPhase;
81-
buildActionMask = 2147483647;
82-
files = (
83-
3D36216B23D0B98600C8329C /* RNImglyKit.h in Headers */,
84-
3D36216C23D0B98900C8329C /* RNPhotoEditorSDK.h in Headers */,
85-
3D36216923D0B97E00C8329C /* RNImgly.h in Headers */,
86-
3D36216A23D0B98300C8329C /* RNImglyKitSubclass.h in Headers */,
87-
);
88-
runOnlyForDeploymentPostprocessing = 0;
89-
};
90-
/* End PBXHeadersBuildPhase section */
91-
9274
/* Begin PBXNativeTarget section */
9375
58B511DA1A9E6C8500147676 /* RNPhotoEditorSDK */ = {
9476
isa = PBXNativeTarget;
9577
buildConfigurationList = 58B511EF1A9E6C8500147676 /* Build configuration list for PBXNativeTarget "RNPhotoEditorSDK" */;
9678
buildPhases = (
97-
3D36216823D0B95F00C8329C /* 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-photoeditorsdk",
33
"title": "React Native module for PhotoEditor SDK",
4-
"version": "2.2.0",
4+
"version": "2.2.1",
55
"description": "A React Native module for PhotoEditor SDK. Integrate the photo 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)