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.
File without changes
@@ -1,2 +1,2 @@
1
- #Wed Sep 02 15:02:00 IST 2026
2
- gradle.version=9.2.0
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.24",
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