-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathapp.json
More file actions
86 lines (86 loc) 路 2.78 KB
/
Copy pathapp.json
File metadata and controls
86 lines (86 loc) 路 2.78 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"expo": {
"name": "Face Recognition App",
"description": "A complete React Native facial recognition application using ArcFace ONNX model. Features include face registration, real-time verification, and secure local storage of biometric data.",
"slug": "react-native-facial-recognition",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./src/assets/images/icon.png",
"userInterfaceStyle": "automatic",
"newArchEnabled": true,
"scheme": "face-recognition",
"githubUrl": "https://github.com/maateusx/react-native-facial-recognition",
"primaryColor": "#318ede",
"privacy": "public",
"platforms": ["ios", "android", "web"],
"splash": {
"image": "./src/assets/images/splash-icon.png",
"resizeMode": "contain",
"backgroundColor": "#318ede"
},
"assetBundlePatterns": ["assets/**/*"],
"ios": {
"supportsTablet": false,
"requireFullScreen": true,
"config": {
"usesNonExemptEncryption": false
},
"infoPlist": {
"NSCameraUsageDescription": "This app uses the camera for facial recognition and registration. Your biometric data stays securely on your device.",
"NSFaceIDUsageDescription": "Enable Face ID for enhanced security when accessing the app.",
"UIRequiredDeviceCapabilities": ["front-facing-camera"],
"ITSAppUsesNonExemptEncryption": false
},
"bundleIdentifier": "com.maateusx.facerecognition"
},
"android": {
"compileSdkVersion": 34,
"targetSdkVersion": 34,
"minSdkVersion": 24,
"adaptiveIcon": {
"foregroundImage": "./src/assets/images/splash-icon.png",
"backgroundColor": "#318ede"
},
"allowBackup": false,
"permissions": ["android.permission.CAMERA", "android.permission.RECORD_AUDIO"],
"package": "com.maateusx.facerecognition"
},
"web": {
"favicon": "./src/assets/images/favicon.png",
"name": "Face Recognition App",
"shortName": "FaceRecognition",
"lang": "en",
"scope": "/",
"themeColor": "#318ede",
"description": "React Native facial recognition app with ArcFace ONNX model",
"dir": "auto",
"display": "standalone",
"orientation": "portrait",
"startUrl": "/"
},
"plugins": [
[
"react-native-vision-camera",
{
"cameraPermissionText": "$(PRODUCT_NAME) needs access to your camera for facial recognition features.",
"enableMicrophonePermission": false
}
],
[
"onnxruntime-react-native",
{
"bundleCustomONNXModel": true
}
]
],
"experiments": {
"typedRoutes": false
},
"extra": {
"eas": {
"projectId": "your-eas-project-id"
}
},
"owner": "maateusx"
}
}