-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
119 lines (119 loc) · 3.29 KB
/
Copy pathapp.json
File metadata and controls
119 lines (119 loc) · 3.29 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"expo": {
"name": "offlineaid",
"slug": "offlineaid",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/images/icon.png",
"scheme": "offlineaid",
"userInterfaceStyle": "automatic",
"ios": {
"icon": "./assets/images/icon.png"
},
"android": {
"adaptiveIcon": {
"backgroundColor": "#f5f5f4",
"foregroundImage": "./assets/images/android-icon-foreground.png",
"backgroundImage": "./assets/images/android-icon-background.png",
"monochromeImage": "./assets/images/android-icon-monochrome.png"
},
"predictiveBackGestureEnabled": false,
"package": "com.helenkwok.offlineaid",
"permissions": ["android.permission.RECORD_AUDIO"]
},
"web": {
"output": "static",
"favicon": "./assets/images/favicon.png"
},
"plugins": [
"expo-router",
[
"expo-camera",
{
"cameraPermission": "Allow OfflineAid to use the camera for offline photo capture."
}
],
[
"expo-image-picker",
{
"photosPermission": "Allow OfflineAid to access your photo library for offline image import.",
"cameraPermission": "Allow OfflineAid to use the camera for offline photo capture."
}
],
[
"expo-audio",
{
"microphonePermission": "Allow OfflineAid to record audio clips and use offline voice input.",
"enableBackgroundPlayback": false
}
],
[
"expo-speech-recognition",
{
"microphonePermission": "Allow OfflineAid to record audio clips and use offline voice input.",
"speechRecognitionPermission": "Allow OfflineAid to use on-device speech recognition for offline voice input.",
"androidSpeechServicePackages": [
"com.google.android.as",
"com.google.android.tts",
"com.google.android.googlequicksearchbox"
]
}
],
"./plugins/with-offlineaid-android-toolchain",
"expo-secure-store",
[
"expo-splash-screen",
{
"backgroundColor": "#f5f5f4",
"android": {
"image": "./assets/images/splash-icon.png",
"imageWidth": 200
}
}
],
[
"llama.rn",
{
"enableEntitlements": true,
"entitlementsProfile": "production",
"forceCxx20": true,
"enableOpenCLAndHexagon": true
}
],
[
"expo-build-properties",
{
"ios": {
"deploymentTarget": "15.5",
"useFrameworks": "static"
},
"android": {
"kotlinVersion": "2.3.0"
}
}
],
"expo-sqlite",
"expo-web-browser",
"expo-font",
"expo-image",
[
"expo-location",
{
"locationWhenInUsePermission": "Allow OfflineAid to use your location so it can recognise when GPS is unavailable (e.g. airplane mode) and tailor its offline guidance."
}
],
"expo-localization"
],
"experiments": {
"typedRoutes": true,
"reactCompiler": true
},
"extra": {
"router": {},
"eas": {
"projectId": "d52c3c67-a04c-4ee3-8124-28eac3ebf78a"
},
"supportsRTL": true
}
}
}