-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
71 lines (71 loc) · 2.71 KB
/
Copy pathapp.json
File metadata and controls
71 lines (71 loc) · 2.71 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
{
"expo": {
"name": "Source Kit",
"slug": "verify-app",
"owner": "REPLACE_WITH_YOUR_EXPO_ACCOUNT",
"version": "0.1.2",
"orientation": "portrait",
"icon": "./assets/icons/icon-light.png",
"scheme": "verify",
"userInterfaceStyle": "automatic",
"backgroundColor": "#FAFAF7",
"ios": {
"supportsTablet": false,
"bundleIdentifier": "com.verify.camera",
"buildNumber": "35",
"icon": {
"light": "./assets/icons/icon-light.png",
"dark": "./assets/icons/icon-dark.png",
"tinted": "./assets/icons/icon-tinted.png"
},
"infoPlist": {
"ITSAppUsesNonExemptEncryption": false,
"NSCameraUsageDescription": "Source Kit uses the camera to capture photos and video that you choose to cryptographically sign.",
"NSMicrophoneUsageDescription": "Source Kit uses the microphone when you record video with sound or capture signed audio.",
"NSSpeechRecognitionUsageDescription": "Source Kit transcribes your recordings on this device so the transcript can travel inside the signed file. Audio never leaves your phone for transcription.",
"NSLocationWhenInUseUsageDescription": "Source Kit can attach your approximate location to signed media. This is optional and can be turned off at any time.",
"NSFaceIDUsageDescription": "Source Kit can use Face ID to unlock your encrypted vault.",
"NSPhotoLibraryUsageDescription": "Source Kit lets you select photos from your library to check their provenance signatures.",
"NSPhotoLibraryAddUsageDescription": "Source Kit can save signed photos to your photo library if you enable this option."
},
"entitlements": {
"com.apple.developer.devicecheck.appattest-environment": "production",
"com.apple.developer.networking.wifi-info": true
}
},
"plugins": [
"expo-router",
[
"expo-location",
{
"locationWhenInUsePermission": "Source Kit can attach your approximate location to signed media. This is optional and can be turned off at any time."
}
],
[
"expo-local-authentication",
{
"faceIDPermission": "Source Kit can use Face ID to unlock your encrypted vault."
}
],
[
"expo-media-library",
{
"savePhotosPermission": "Source Kit can save signed photos to your photo library if you enable this option.",
"isAccessMediaLocationEnabled": false
}
],
"expo-secure-store",
"expo-video",
"expo-sharing",
"expo-image"
],
"experiments": {
"typedRoutes": false
},
"extra": {
"eas": {
"projectId": "REPLACE_WITH_YOUR_EAS_PROJECT_ID"
}
}
}
}