@finos_sdk/sdk-ekyc 0.0.42 → 0.0.43

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.
@@ -7,11 +7,11 @@ plugins {
7
7
 
8
8
  android {
9
9
  namespace 'finos.sdk.ekyc'
10
- compileSdk (project.findProperty('compileSdkVersion') ?: 35) as Integer
10
+ compileSdk 35
11
11
 
12
12
  defaultConfig {
13
- minSdkVersion (project.findProperty('minSdkVersion') ?: 24) as Integer
14
- targetSdkVersion (project.findProperty('targetSdkVersion') ?: 34) as Integer
13
+ minSdkVersion 24
14
+ targetSdkVersion 34
15
15
  consumerProguardFiles 'consumer-rules.pro'
16
16
  }
17
17
 
@@ -5,11 +5,11 @@ plugins {
5
5
 
6
6
  android {
7
7
  namespace 'finos.sdk.ekyc'
8
- compileSdk rootProject.ext.compileSdkVersion
8
+ compileSdk 35
9
9
 
10
10
  defaultConfig {
11
- minSdkVersion rootProject.ext.minSdkVersion
12
- targetSdkVersion rootProject.ext.targetSdkVersion
11
+ minSdkVersion 24
12
+ targetSdkVersion 34
13
13
  consumerProguardFiles 'consumer-rules.pro'
14
14
  }
15
15
 
@@ -23,17 +23,9 @@ android {
23
23
 
24
24
  dependencies {
25
25
  implementation 'com.facebook.react:react-android'
26
- implementation("finos.sdk.ekyc:ekyc:1.2.0")
27
- implementation("finos.sdk.ekyc:ekycui:1.2.0")
28
- implementation("finos.sdk.ekyc:nfc:1.2.0")
29
- implementation("finos.sdk.ekyc:ocr:1.2.0")
30
- implementation("finos.sdk.ekyc:liveness:1.2.0")
31
- implementation("finos.sdk.ekyc:faceservice:1.2.0")
32
- implementation("finos.sdk.ekyc:c06:1.2.0")
33
- implementation("finos.sdk.ekyc:sdkcore:1.2.0")
34
- implementation("finos.sdk.ekyc:sdkcorecamera:1.2.0")
35
- implementation("finos.sdk.ekyc:sdkui:1.2.0")
36
- implementation("finos.sdk.ekyc:qrcode:1.2.0")
26
+
27
+ // Include all Finos SDK AAR files directly
28
+ implementation fileTree(dir: '../SDKeKYC', include: ['**/*.aar'])
37
29
  }
38
30
 
39
31
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@finos_sdk/sdk-ekyc",
3
- "version": "0.0.42",
3
+ "version": "0.0.43",
4
4
  "description": "React Native SDK for eKYC - Vietnamese CCCD NFC reading, OCR, Liveness detection, Face matching, and C06 residence verification",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -49,8 +49,9 @@
49
49
  "npm-install": "npm install",
50
50
  "build": "tsc",
51
51
  "prepare": "npm run build",
52
- "publish-sdk-local": "npm run build && npm publish --access public",
53
- "publish-sdk": "npm run build && npm version patch --force && npm publish --access public",
52
+ "publish-sdk-local": "npm pack",
53
+ "publish-sdk": "npm run build && npm publish --access public",
54
+ "publish-sdk-version": "npm run build && npm version patch --force && npm publish --access public",
54
55
  "prepublishOnly": "npm run build"
55
56
  },
56
57
  "dependencies": {