@veryai/react-native-sdk 1.0.40 → 1.0.41

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.
@@ -31,6 +31,13 @@ android {
31
31
  minSdkVersion 23
32
32
  targetSdkVersion 34
33
33
  buildConfigField "boolean", "IS_NEW_ARCHITECTURE_ENABLED", isNewArchitectureEnabled().toString()
34
+ // RN wrapper consumes the FULL flavor of the native SDK module
35
+ // (`org.very:sdk`, not `org.very:liveness`) — `authenticate()`
36
+ // is the public API surface this wrapper exposes. Required only
37
+ // when an RN app pulls the SDK via `include ':very-sdk'` (dev
38
+ // path); the Maven Central path resolves to the full AAR
39
+ // unambiguously by artifactId.
40
+ missingDimensionStrategy 'sdk-product', 'full'
34
41
  }
35
42
 
36
43
  buildFeatures {
@@ -76,7 +83,7 @@ dependencies {
76
83
  if (findProject(':very-sdk') != null) {
77
84
  implementation project(':very-sdk')
78
85
  } else {
79
- implementation "org.very:sdk:${project.findProperty('verySDKVersion') ?: '1.0.40'}"
86
+ implementation "org.very:sdk:${project.findProperty('verySDKVersion') ?: '1.0.41'}"
80
87
  }
81
88
  }
82
89
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@veryai/react-native-sdk",
3
- "version": "1.0.40",
3
+ "version": "1.0.41",
4
4
  "description": "React Native wrapper for Very SDK - Palm biometrics verification",
5
5
  "main": "lib/commonjs/index",
6
6
  "module": "lib/module/index",
@@ -25,7 +25,11 @@ Pod::Spec.new do |s|
25
25
 
26
26
  s.subspec 'Core' do |core|
27
27
  core.source_files = "ios/**/*.{swift,h,m,mm}"
28
- core.dependency "VerySDK/Core", "1.0.40"
28
+ # `~>` (pessimistic version constraint) instead of `>=, <` so the
29
+ # CI sed in .github/workflows/release.yml can rewrite the version
30
+ # on each release. The two forms are functionally similar within
31
+ # a minor: `~> 1.0.39` ≡ `>= 1.0.39, < 1.1.0`.
32
+ core.dependency "VerySDK/Core", "1.0.41"
29
33
 
30
34
  if respond_to?(:install_modules_dependencies, true)
31
35
  install_modules_dependencies(core)
@@ -36,6 +40,6 @@ Pod::Spec.new do |s|
36
40
 
37
41
  s.subspec 'Bundled' do |bundled|
38
42
  bundled.dependency 'veryai-react-native-sdk/Core'
39
- bundled.dependency 'VerySDK/Bundled', "1.0.40"
43
+ bundled.dependency 'VerySDK/Bundled', "1.0.41"
40
44
  end
41
45
  end