react-native-hyperkyc-sdk 0.9.2 → 0.11.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 +8 -0
- package/android/build.gradle +1 -1
- package/ios/.DS_Store +0 -0
- package/ios/HyperkycSdk.xcodeproj/project.xcworkspace/xcuserdata/niveditamuthusubramanian.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- package/package.json +1 -1
- package/react-native-hyperkyc-sdk.podspec +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,12 @@
|
|
|
1
1
|
|
|
2
|
+
|
|
3
|
+
# 0.11.0 [23 Jun 2023]
|
|
4
|
+
- Upgrade native android HyperKyc to `0.11.0`
|
|
5
|
+
- Upgrade native iOS HyperKYC to `0.11.0`
|
|
6
|
+
|
|
7
|
+
# 0.10.0 [19 Jun 2023]
|
|
8
|
+
- Upgrade native android HyperKyc to `0.10.0`
|
|
9
|
+
- Upgrade native iOS HyperKYC to `0.10.1`
|
|
2
10
|
# 0.9.2 [14 Jun 2023]
|
|
3
11
|
- Fix callback not invoked for accessToken flow
|
|
4
12
|
|
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.
|
|
59
|
+
implementation('co.hyperverge:hyperkyc:0.11.0@aar', {
|
|
60
60
|
transitive = true
|
|
61
61
|
})
|
|
62
62
|
|
package/ios/.DS_Store
CHANGED
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -16,7 +16,7 @@ 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", "0.
|
|
19
|
+
s.dependency "HyperKYC", "0.11.0"
|
|
20
20
|
# Need these lines to support HyperKYC framework
|
|
21
21
|
s.preserve_paths = 'HyperKYC.framework'
|
|
22
22
|
s.xcconfig = { 'OTHER_LDFLAGS' => '-framework HyperKYC' }
|