react-native-ux-cam 5.4.15 → 5.4.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +1 -0
- package/RNUxcam.podspec +5 -5
- package/android/build.gradle +1 -1
- package/android/src/main/java/com/uxcam/RNUxcamModule.java +1 -1
- package/ios/RNUxcam.m +1 -1
- package/ios/RNUxcam.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- package/ios/RNUxcam.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
Version | Changes
|
|
7
7
|
------- | ----------
|
|
8
|
+
5.4.16 | Updated iOS SDK to 3.6.13 and Android to 3.6.26
|
|
8
9
|
5.4.15 | Updated iOS SDK to 3.6.11 and Android to 3.6.23
|
|
9
10
|
5.4.14 | Updated iOS SDK to 3.6.9 and Android to 3.6.21
|
|
10
11
|
5.4.13 | Updated iOS SDK to 3.6.7 and Android to 3.6.18, Updated minSdkVersion to 21 for Android
|
package/RNUxcam.podspec
CHANGED
|
@@ -7,15 +7,15 @@ Pod::Spec.new do |s|
|
|
|
7
7
|
s.description = <<-DESC
|
|
8
8
|
RNUxcam - React Native wrapper for uxcam.com.
|
|
9
9
|
DESC
|
|
10
|
-
s.homepage = "https://github.com/
|
|
10
|
+
s.homepage = "https://github.com/uxcam/react-native-ux-cam"
|
|
11
11
|
s.license = "MIT"
|
|
12
|
-
s.author = { "author" => "author@
|
|
13
|
-
s.platform = :ios, "
|
|
14
|
-
s.source = { :git => "https://github.com/
|
|
12
|
+
s.author = { "author" => "author@uxcam.com" }
|
|
13
|
+
s.platform = :ios, "12.0"
|
|
14
|
+
s.source = { :git => "https://github.com/uxcam/react-native-ux-cam", :tag => "#{s.version}" }
|
|
15
15
|
s.source_files = "ios/**/*.{h,m}"
|
|
16
16
|
s.requires_arc = true
|
|
17
17
|
s.static_framework = true
|
|
18
18
|
|
|
19
19
|
s.dependency 'React-Core'
|
|
20
|
-
s.dependency 'UXCam' , '~> 3.6.
|
|
20
|
+
s.dependency 'UXCam' , '~> 3.6.13'
|
|
21
21
|
end
|
package/android/build.gradle
CHANGED
|
@@ -37,7 +37,7 @@ import com.uxcam.datamodel.UXConfig;
|
|
|
37
37
|
|
|
38
38
|
public class RNUxcamModule extends ReactContextBaseJavaModule {
|
|
39
39
|
private static final String UXCAM_PLUGIN_TYPE = "react-native";
|
|
40
|
-
private static final String UXCAM_REACT_PLUGIN_VERSION = "5.4.
|
|
40
|
+
private static final String UXCAM_REACT_PLUGIN_VERSION = "5.4.16";
|
|
41
41
|
|
|
42
42
|
private static final String UXCAM_VERIFICATION_EVENT_KEY = "UXCam_Verification_Event";
|
|
43
43
|
private static final String PARAM_SUCCESS_KEY = "success";
|
package/ios/RNUxcam.m
CHANGED
|
@@ -54,7 +54,7 @@ RCT_EXPORT_MODULE();
|
|
|
54
54
|
RCT_EXPORT_METHOD(startWithConfiguration:(NSDictionary *)config)
|
|
55
55
|
{
|
|
56
56
|
self.lastVerifyResult = nil;
|
|
57
|
-
[UXCam pluginType:@"react-native" version:@"5.4.
|
|
57
|
+
[UXCam pluginType:@"react-native" version:@"5.4.16"];
|
|
58
58
|
|
|
59
59
|
NSString *userAppKey = config[RNUxcam_AppKey];
|
|
60
60
|
if (!userAppKey || ![userAppKey isKindOfClass:NSString.class])
|
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-native-ux-cam",
|
|
3
|
-
"version": "5.4.
|
|
3
|
+
"version": "5.4.16",
|
|
4
4
|
"description": "React Native wrapper for uxcam.com.",
|
|
5
5
|
"license": "MIT",
|
|
6
|
-
"author": "admin@uxcam.com
|
|
6
|
+
"author": "admin@uxcam.com",
|
|
7
7
|
"homepage": "https://github.com/uxcam/react-native-ux-cam",
|
|
8
8
|
"repository": "uxcam/react-native-ux-cam",
|
|
9
9
|
"main": "index.js",
|