react-native-ux-cam 5.4.14 → 5.4.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,7 @@
5
5
 
6
6
  Version | Changes
7
7
  ------- | ----------
8
+ 5.4.15 | Updated iOS SDK to 3.6.11 and Android to 3.6.23
8
9
  5.4.14 | Updated iOS SDK to 3.6.9 and Android to 3.6.21
9
10
  5.4.13 | Updated iOS SDK to 3.6.7 and Android to 3.6.18, Updated minSdkVersion to 21 for Android
10
11
  5.4.12 | Updated iOS SDK to 3.6.6 and Android to 3.6.16
package/RNUxcam.podspec CHANGED
@@ -17,5 +17,5 @@ Pod::Spec.new do |s|
17
17
  s.static_framework = true
18
18
 
19
19
  s.dependency 'React-Core'
20
- s.dependency 'UXCam' , '~> 3.6.9'
20
+ s.dependency 'UXCam' , '~> 3.6.11'
21
21
  end
@@ -13,12 +13,12 @@ buildscript {
13
13
  apply plugin: 'com.android.library'
14
14
 
15
15
  android {
16
- compileSdkVersion 32
17
- buildToolsVersion "32.0.0"
16
+ compileSdkVersion 33
17
+ buildToolsVersion "33.0.1"
18
18
 
19
19
  defaultConfig {
20
20
  minSdkVersion 21
21
- targetSdkVersion 32
21
+ targetSdkVersion 33
22
22
  versionCode 1
23
23
  versionName "1.0"
24
24
  }
@@ -43,5 +43,5 @@ rootProject.allprojects {
43
43
 
44
44
  dependencies {
45
45
  implementation 'com.facebook.react:react-native:+'
46
- implementation 'com.uxcam:uxcam:3.6.21'
47
- }
46
+ implementation 'com.uxcam:uxcam:3.6.23'
47
+ }
@@ -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.14";
40
+ private static final String UXCAM_REACT_PLUGIN_VERSION = "5.4.15";
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.14"];
57
+ [UXCam pluginType:@"react-native" version:@"5.4.15"];
58
58
 
59
59
  NSString *userAppKey = config[RNUxcam_AppKey];
60
60
  if (!userAppKey || ![userAppKey isKindOfClass:NSString.class])
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-ux-cam",
3
- "version": "5.4.14",
3
+ "version": "5.4.15",
4
4
  "description": "React Native wrapper for uxcam.com.",
5
5
  "license": "MIT",
6
6
  "author": "admin@uxcam.com for UXCam Inc. after Mark Miyashita <negativetwelve@gmail.com>",