-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
86 lines (86 loc) · 2.35 KB
/
Copy pathapp.json
File metadata and controls
86 lines (86 loc) · 2.35 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": "Companion",
"slug": "companion",
"version": "1.0.0",
"runtimeVersion": {
"policy": "appVersion"
},
"updates": {
"url": "https://u.expo.dev/ce8862a4-5a0a-4276-8cb6-24faeaee424a",
"fallbackToCacheTimeout": 0
},
"orientation": "portrait",
"icon": "./assets/images/icon.png",
"scheme": "companion",
"userInterfaceStyle": "automatic",
"splash": {
"image": "./assets/images/splash-icon.png",
"resizeMode": "contain",
"backgroundColor": "#1E3A5F"
},
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.companion.app",
"infoPlist": {
"NSMicrophoneUsageDescription": "Companion needs microphone access to practice French speaking and pronunciation.",
"NSSpeechRecognitionUsageDescription": "Companion uses speech recognition to assess your French pronunciation."
}
},
"android": {
"adaptiveIcon": {
"backgroundColor": "#1E3A5F",
"foregroundImage": "./assets/images/android-icon-foreground.png",
"backgroundImage": "./assets/images/android-icon-background.png",
"monochromeImage": "./assets/images/android-icon-monochrome.png"
},
"package": "com.companion.app",
"permissions": [
"RECORD_AUDIO",
"android.permission.RECORD_AUDIO",
"android.permission.MODIFY_AUDIO_SETTINGS",
"android.permission.FOREGROUND_SERVICE",
"android.permission.FOREGROUND_SERVICE_MEDIA_PLAYBACK"
]
},
"web": {
"bundler": "metro",
"output": "static",
"favicon": "./assets/images/favicon.png"
},
"plugins": [
"expo-router",
"expo-secure-store",
[
"expo-audio",
{
"microphonePermission": "Companion needs microphone access to practice French speaking and pronunciation."
}
],
"@mykin-ai/expo-audio-stream",
[
"expo-notifications",
{
"color": "#1E3A5F"
}
],
[
"@sentry/react-native/expo",
{
"organization": "simplemart-inc",
"project": "companion"
}
]
],
"experiments": {
"typedRoutes": true
},
"extra": {
"eas": {
"projectId": "ce8862a4-5a0a-4276-8cb6-24faeaee424a"
},
"router": {}
},
"owner": "simplemart17"
}
}