@trustchex/react-native-sdk 1.162.8 → 1.163.4
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/TrustchexSDK.podspec +6 -4
- package/android/build.gradle +1 -5
- package/package.json +1 -1
package/TrustchexSDK.podspec
CHANGED
|
@@ -16,10 +16,12 @@ Pod::Spec.new do |s|
|
|
|
16
16
|
s.source_files = "ios/**/*.{h,m,mm,cpp,swift}"
|
|
17
17
|
s.private_header_files = "ios/**/*.h"
|
|
18
18
|
|
|
19
|
-
# ML Kit dependencies
|
|
20
|
-
s.dependency "
|
|
21
|
-
|
|
22
|
-
s.dependency "
|
|
19
|
+
# ML Kit dependencies
|
|
20
|
+
s.dependency "MLKitTextRecognition", "7.0.0"
|
|
21
|
+
s.dependency "MLKitBarcodeScanning", "8.0.0"
|
|
22
|
+
s.dependency "MLKitFaceDetection", "8.0.0"
|
|
23
|
+
|
|
24
|
+
# Camera dependency
|
|
23
25
|
s.dependency "VisionCamera"
|
|
24
26
|
|
|
25
27
|
install_modules_dependencies(s)
|
package/android/build.gradle
CHANGED
|
@@ -83,13 +83,9 @@ dependencies {
|
|
|
83
83
|
implementation "androidx.camera:camera-camera2:1.4.0"
|
|
84
84
|
implementation "androidx.camera:camera-lifecycle:1.4.0"
|
|
85
85
|
|
|
86
|
-
// Google ML Kit
|
|
86
|
+
// Google ML Kit dependencies
|
|
87
87
|
implementation 'com.google.mlkit:text-recognition:16.0.1'
|
|
88
|
-
|
|
89
|
-
// Google ML Kit Face Detection dependency
|
|
90
88
|
implementation 'com.google.mlkit:face-detection:16.1.7'
|
|
91
|
-
|
|
92
|
-
// Google ML Kit Barcode Scanning dependency
|
|
93
89
|
implementation 'com.google.mlkit:barcode-scanning:17.3.0'
|
|
94
90
|
|
|
95
91
|
// Google Play Services dependency for Tasks
|
package/package.json
CHANGED