react-native-hyperkyc-sdk 0.3.12-alpha01 → 0.5.0

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
@@ -1,8 +1,19 @@
1
+
2
+ # 0.5.0 [02 Dec 2022]
3
+ - Upgrade native iOS HyperKYC to `0.5.0` - Includes `DocDetect`
4
+ - Upgrade native android HyperKyc to `0.5.0` - Includes `DocDetect`
5
+ - Update deployment target to 11 (for iOS)
6
+ - Update compileSDK version to 33 (for android)
7
+ - Made ios framework static. Have to add use_framework! for HyperKYC pod.
8
+
9
+ ** Please note that 0.4.0 version does not exist. We have taken this decision to maintain version number consistency between all the platforms that we support **
10
+
1
11
  # 0.3.12 [12 Dec 2022]
2
12
  1. Updated Android SDK to 0.3.12
3
13
  2. Updated and fix iOS SDK to 0.3.8
4
14
 
5
15
 
16
+
6
17
  # 0.3.11 [28th Oct 2022]
7
18
  1. Updated Android SDK version to 0.3.10
8
19
 
@@ -19,10 +19,10 @@ def safeExtGet(prop, fallback) {
19
19
  }
20
20
 
21
21
  android {
22
- compileSdkVersion safeExtGet('HyperkycSdk_compileSdkVersion', 29)
22
+ compileSdkVersion safeExtGet('HyperkycSdk_compileSdkVersion', 33)
23
23
  defaultConfig {
24
24
  minSdkVersion safeExtGet('HyperkycSdk_minSdkVersion', 16)
25
- targetSdkVersion safeExtGet('HyperkycSdk_targetSdkVersion', 29)
25
+ targetSdkVersion safeExtGet('HyperkycSdk_targetSdkVersion', 33)
26
26
  versionCode 1
27
27
  versionName "1.0"
28
28
 
@@ -56,7 +56,7 @@ repositories {
56
56
  dependencies {
57
57
  //noinspection GradleDynamicVersion
58
58
  implementation "com.facebook.react:react-native:+" // From node_modules
59
- implementation('co.hyperverge:hyperkyc:0.3.12@aar', {
59
+ implementation('co.hyperverge:hyperkyc:0.5.0@aar', {
60
60
  transitive = true
61
61
  })
62
62
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-hyperkyc-sdk",
3
- "version": "0.3.12-alpha01",
3
+ "version": "0.5.0",
4
4
  "description": "React Native wrapper for HyperKYC SDK",
5
5
  "main": "lib/commonjs/index",
6
6
  "module": "lib/module/index",
@@ -10,11 +10,12 @@ Pod::Spec.new do |s|
10
10
  s.license = package["license"]
11
11
  s.authors = package["author"]
12
12
 
13
- s.platforms = { :ios => "10.0" }
13
+ s.platforms = { :ios => "11.0" }
14
14
  s.source = { :git => "http://github.com/hyperverge/react-native-hyperkyc-sdk.git", :tag => "#{s.version}" }
15
15
 
16
16
  s.source_files = "ios/**/*.{h,m,mm,swift}"
17
-
17
+ s.static_framework = true
18
18
  s.dependency "React-Core"
19
- s.dependency 'HyperKYC', '0.3.8'
19
+ s.dependency "HyperKYC/DocDetect", "0.5.0"
20
+
20
21
  end