react-native-ux-cam 6.0.0 → 6.0.1

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,7 @@
5
5
 
6
6
  Version | Changes
7
7
  ------- | ----------
8
+ 6.0.1 | Updated iOS SDK to 3.6.17 and Android to 3.6.33
8
9
  6.0.0 | Added support for new architecture
9
10
  5.4.16 | Updated iOS SDK to 3.6.13 and Android to 3.6.26
10
11
  5.4.15 | Updated iOS SDK to 3.6.11 and Android to 3.6.23
package/RNUxcam.podspec CHANGED
@@ -20,7 +20,7 @@ Pod::Spec.new do |s|
20
20
  s.static_framework = true
21
21
 
22
22
  s.dependency 'React-Core'
23
- s.dependency 'UXCam' , '~> 3.6.15'
23
+ s.dependency 'UXCam' , '~> 3.6.17'
24
24
 
25
25
  # This guard prevent to install the dependencies when we run `pod install` in the old architecture.
26
26
  if ENV['RCT_NEW_ARCH_ENABLED'] == '1' then
@@ -37,4 +37,4 @@ Pod::Spec.new do |s|
37
37
  s.dependency "ReactCommon/turbomodule/core"
38
38
  end
39
39
 
40
- end
40
+ end
@@ -69,7 +69,7 @@ rootProject.allprojects {
69
69
 
70
70
  dependencies {
71
71
  implementation 'com.facebook.react:react-native:+'
72
- implementation 'com.uxcam:uxcam:3.6.26'
72
+ implementation 'com.uxcam:uxcam:3.6.33'
73
73
  }
74
74
 
75
75
  if (isNewArchitectureEnabled()) {
@@ -56,7 +56,7 @@ public class RNUxcamModuleImpl {
56
56
  public static final String HIDE_GESTURES = "hideGestures";
57
57
 
58
58
  private static final String UXCAM_PLUGIN_TYPE = "react-native";
59
- private static final String UXCAM_REACT_PLUGIN_VERSION = "6.0.0";
59
+ private static final String UXCAM_REACT_PLUGIN_VERSION = "6.0.1";
60
60
 
61
61
  private final ReactApplicationContext reactContext;
62
62
 
@@ -31,7 +31,7 @@ static NSString* const RNUxcam_HideGestures = @"hideGestures";
31
31
  static NSString* const RNUxcam_OverlayColor = @"color";
32
32
 
33
33
  static NSString* const RNUxcam_PluginType = @"react-native";
34
- static NSString* const RNUxcam_PluginVersion = @"6.0.0";
34
+ static NSString* const RNUxcam_PluginVersion = @"6.0.1";
35
35
 
36
36
 
37
37
  @interface RNUxcam ()
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-ux-cam",
3
- "version": "6.0.0",
3
+ "version": "6.0.1",
4
4
  "description": "React Native wrapper for uxcam.com.",
5
5
  "react-native": "src/index",
6
6
  "main": "src/index",