react-native-vision-camera-spoof-detector 1.0.24 → 1.0.25
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/android/.gradle/8.9/checksums/checksums.lock +0 -0
- package/android/.gradle/8.9/checksums/sha1-checksums.bin +0 -0
- package/android/.gradle/8.9/dependencies-accessors/gc.properties +0 -0
- package/android/.gradle/8.9/fileChanges/last-build.bin +0 -0
- package/android/.gradle/8.9/fileHashes/fileHashes.lock +0 -0
- package/android/.gradle/8.9/gc.properties +0 -0
- package/android/.gradle/9.2.0/checksums/checksums.lock +0 -0
- package/android/.gradle/9.2.0/checksums/md5-checksums.bin +0 -0
- package/android/.gradle/9.2.0/checksums/sha1-checksums.bin +0 -0
- package/android/.gradle/9.2.0/fileHashes/fileHashes.bin +0 -0
- package/android/.gradle/9.2.0/fileHashes/fileHashes.lock +0 -0
- package/android/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
- package/android/.gradle/buildOutputCleanup/cache.properties +2 -2
- package/package.json +3 -2
- package/react-native-vision-camera-spoof-detector.podspec +22 -0
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
#Wed Sep 02
|
|
2
|
-
gradle.version=9
|
|
1
|
+
#Wed Sep 02 17:38:49 IST 2026
|
|
2
|
+
gradle.version=8.9
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-native-vision-camera-spoof-detector",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.25",
|
|
4
4
|
"description": "High-performance face anti-spoofing and liveness detection module for React Native Vision Camera. Uses TensorFlow Lite with GPU acceleration and optimized YUV processing.",
|
|
5
5
|
"homepage": "https://github.com/dpraful/react-native-vision-camera-spoof-detector",
|
|
6
6
|
"repository": {
|
|
@@ -37,7 +37,8 @@
|
|
|
37
37
|
"index.js",
|
|
38
38
|
"index.d.ts",
|
|
39
39
|
"README.md",
|
|
40
|
-
"LICENSE"
|
|
40
|
+
"LICENSE",
|
|
41
|
+
"react-native-vision-camera-spoof-detector.podspec"
|
|
41
42
|
],
|
|
42
43
|
"keywords": [
|
|
43
44
|
"react-native",
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
Pod::Spec.new do |s|
|
|
2
|
+
s.name = 'react-native-vision-camera-spoof-detector'
|
|
3
|
+
s.version = '0.1.0'
|
|
4
|
+
s.summary = 'Face anti-spoof detector for VisionCamera (iOS)'
|
|
5
|
+
s.homepage = 'https://example.com'
|
|
6
|
+
s.license = { :type => 'MIT' }
|
|
7
|
+
s.authors = { 'You' => 'you@example.com' }
|
|
8
|
+
s.platform = :ios, '11.0'
|
|
9
|
+
s.source = { :path => '.' }
|
|
10
|
+
|
|
11
|
+
s.swift_version = '5.0'
|
|
12
|
+
|
|
13
|
+
s.source_files = 'ios/**/*.{h,m,mm,swift,mm,cpp,c,cc}'
|
|
14
|
+
s.resources = ['ios/models/*']
|
|
15
|
+
|
|
16
|
+
# Dependencies
|
|
17
|
+
s.dependency 'TensorFlowLiteSwift'
|
|
18
|
+
s.dependency 'VisionCamera'
|
|
19
|
+
|
|
20
|
+
# Keep default deployment target and static linkage consistent with RN
|
|
21
|
+
s.pod_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
|
|
22
|
+
end
|