react-native-hyperkyc-sdk 0.7.0 → 0.7.2
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
|
@@ -10,6 +10,10 @@
|
|
|
10
10
|
2. Updated and fix iOS SDK to 0.3.9
|
|
11
11
|
|
|
12
12
|
|
|
13
|
+
# 0.7.1 [16 Feb 2022]
|
|
14
|
+
- Upgrade native iOS HyperKYC to `0.7.1`
|
|
15
|
+
- Upgrade native android HyperKyc to `0.7.2`
|
|
16
|
+
|
|
13
17
|
# 0.7.0 [8 Feb 2022]
|
|
14
18
|
- Upgrade native iOS HyperKYC to `0.7.0`
|
|
15
19
|
- Upgrade native android HyperKyc to `0.7.0`
|
package/android/build.gradle
CHANGED
|
@@ -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.7.
|
|
59
|
+
implementation('co.hyperverge:hyperkyc:0.7.2@aar', {
|
|
60
60
|
transitive = true
|
|
61
61
|
})
|
|
62
62
|
|
package/package.json
CHANGED
|
@@ -16,6 +16,10 @@ Pod::Spec.new do |s|
|
|
|
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/DocDetect", "0.7.
|
|
20
|
-
|
|
19
|
+
s.dependency "HyperKYC/DocDetect", "0.7.1"
|
|
20
|
+
# Need these lines to support HyperKYC framework
|
|
21
|
+
s.preserve_paths = 'HyperKYC.framework'
|
|
22
|
+
s.xcconfig = { 'OTHER_LDFLAGS' => '-framework HyperKYC' }
|
|
23
|
+
s.vendored_frameworks = 'HyperKYC.framework'
|
|
24
|
+
|
|
21
25
|
end
|