-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathapp.json
More file actions
79 lines (79 loc) · 2.86 KB
/
app.json
File metadata and controls
79 lines (79 loc) · 2.86 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
{
"expo": {
"name": "pulse",
"slug": "pulse",
"version": "1.1.2",
"orientation": "portrait",
"icon": "./assets/images/pulse-logo.png",
"scheme": "pulsecam",
"userInterfaceStyle": "automatic",
"newArchEnabled": true,
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.mieweb.pulse",
"infoPlist": {
"ITSAppUsesNonExemptEncryption": false
},
"appleTeamId": "X5873NL7XM"
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/images/pulse-logo.png",
"backgroundColor": "#ffffff"
},
"edgeToEdgeEnabled": true,
"permissions": [
"android.permission.CAMERA",
"android.permission.RECORD_AUDIO",
"android.permission.READ_EXTERNAL_STORAGE",
"android.permission.WRITE_EXTERNAL_STORAGE",
"android.permission.ACCESS_MEDIA_LOCATION"
],
"package": "com.mieweb.pulse"
},
"web": {
"bundler": "metro",
"output": "static",
"favicon": "./assets/images/pulse-logo.png"
},
"plugins": [
"expo-router",
[
"expo-splash-screen",
{
"image": "./assets/images/pulse-logo.png",
"imageWidth": 200,
"resizeMode": "contain",
"backgroundColor": "#ffffff"
}
],
[
"expo-image-picker",
{
"photosPermission": "$(PRODUCT_NAME) needs access to your photos to let you select previously recorded videos from your camera roll. For example, you can choose an existing video to add to your Pulse project or share it with your team. We only access the specific videos you select.",
"cameraPermission": "$(PRODUCT_NAME) needs camera access to record instructional videos for knowledge sharing. For example, you can record step-by-step tutorials, document procedures, or capture training materials that you can then edit and share with your organization."
}
],
[
"expo-camera",
{
"cameraPermission": "$(PRODUCT_NAME) needs camera access to record instructional videos for knowledge sharing. For example, you can record step-by-step tutorials, document procedures, or capture training materials that you can then edit and share with your organization.",
"microphonePermission": "$(PRODUCT_NAME) needs microphone access to record audio narration with your instructional videos. For example, when you record a tutorial showing how to use software, your voice explanation is captured alongside the visual demonstration to create complete training materials.",
"recordAudioAndroid": true
}
],
"expo-video",
"expo-web-browser"
],
"experiments": {
"typedRoutes": true
},
"extra": {
"router": {},
"eas": {
"projectId": "5f42c4ab-daf7-489a-918e-a893e453486b"
}
},
"owner": "morepriyam"
}
}