react-native-ux-cam 6.0.13 → 6.0.15
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
CHANGED
|
@@ -5,6 +5,8 @@
|
|
|
5
5
|
|
|
6
6
|
Version | Changes
|
|
7
7
|
------- | ----------
|
|
8
|
+
6.0.15 | Updated iOS SDK to 3.7.12 and Android to 3.9.0
|
|
9
|
+
6.0.14 | Updated iOS SDK to 3.7.11 and Android to 3.8.14
|
|
8
10
|
6.0.13 | Updated iOS SDK to 3.7.10 and Android to 3.8.13
|
|
9
11
|
6.0.12 | Updated iOS SDK to 3.7.9 and Android to 3.8.12
|
|
10
12
|
6.0.11 | Updated iOS SDK to 3.7.8 and Android to 3.8.11
|
package/RNUxcam.podspec
CHANGED
|
@@ -18,7 +18,7 @@ Pod::Spec.new do |s|
|
|
|
18
18
|
s.requires_arc = true
|
|
19
19
|
s.static_framework = true
|
|
20
20
|
|
|
21
|
-
s.dependency 'UXCam' , '~> 3.7.
|
|
21
|
+
s.dependency 'UXCam' , '~> 3.7.12'
|
|
22
22
|
|
|
23
23
|
if defined? install_modules_dependencies
|
|
24
24
|
# Default React Native dependencies for 0.71 and above (new and legacy architecture)
|
package/android/build.gradle
CHANGED
|
@@ -62,15 +62,12 @@ rootProject.allprojects {
|
|
|
62
62
|
repositories {
|
|
63
63
|
google()
|
|
64
64
|
mavenCentral()
|
|
65
|
-
maven {
|
|
66
|
-
url 'https://sdk.uxcam.com/android/'
|
|
67
|
-
}
|
|
68
65
|
}
|
|
69
66
|
}
|
|
70
67
|
|
|
71
68
|
dependencies {
|
|
72
69
|
implementation("com.facebook.react:react-android")
|
|
73
|
-
implementation 'com.uxcam:uxcam:3.
|
|
70
|
+
implementation 'com.uxcam:uxcam:3.9.0'
|
|
74
71
|
}
|
|
75
72
|
|
|
76
73
|
if (isNewArchitectureEnabled()) {
|
|
@@ -58,7 +58,7 @@ public class RNUxcamModuleImpl {
|
|
|
58
58
|
public static final String HIDE_GESTURES = "hideGestures";
|
|
59
59
|
|
|
60
60
|
private static final String UXCAM_PLUGIN_TYPE = "react-native";
|
|
61
|
-
private static final String UXCAM_REACT_PLUGIN_VERSION = "6.0.
|
|
61
|
+
private static final String UXCAM_REACT_PLUGIN_VERSION = "6.0.15";
|
|
62
62
|
|
|
63
63
|
private final ReactApplicationContext reactContext;
|
|
64
64
|
|
package/ios/RNUxcam/RNUxcam.mm
CHANGED
|
@@ -32,7 +32,7 @@ static NSString* const RNUxcam_HideGestures = @"hideGestures";
|
|
|
32
32
|
static NSString* const RNUxcam_OverlayColor = @"color";
|
|
33
33
|
|
|
34
34
|
static NSString* const RNUxcam_PluginType = @"react-native";
|
|
35
|
-
static NSString* const RNUxcam_PluginVersion = @"6.0.
|
|
35
|
+
static NSString* const RNUxcam_PluginVersion = @"6.0.15";
|
|
36
36
|
|
|
37
37
|
|
|
38
38
|
@interface RNUxcam ()
|