-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
67 lines (67 loc) · 1.76 KB
/
Copy pathapp.json
File metadata and controls
67 lines (67 loc) · 1.76 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
{
"expo": {
"name": "Smart Mom",
"slug": "momai-minimal",
"version": "1.0.0",
"sdkVersion": "54.0.0",
"orientation": "portrait",
"icon": "./assets/smart-mom.png",
"scheme": "momai",
"userInterfaceStyle": "light",
"newArchEnabled": true,
"splash": {
"image": "./assets/smart-mom.png",
"resizeMode": "contain",
"backgroundColor": "#fefbf0"
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": false,
"bundleIdentifier": "com.meetmindai.minimal",
"infoPlist": {
"NSMicrophoneUsageDescription": "MeetMind-AI needs microphone access to record meeting audio.",
"NSDocumentPickerUsageDescription": "MeetMind-AI needs access to files to upload audio recordings.",
"UIBackgroundModes": ["audio"]
}
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/smart-mom.png",
"backgroundColor": "#fefbf0"
},
"permissions": [
"android.permission.RECORD_AUDIO",
"android.permission.MODIFY_AUDIO_SETTINGS",
"android.permission.FOREGROUND_SERVICE",
"android.permission.FOREGROUND_SERVICE_MICROPHONE",
"android.permission.WAKE_LOCK"
],
"package": "com.meetmindai.minimal"
},
"plugins": [
"expo-router",
[
"expo-audio",
{
"microphonePermission": "Allow MeetMind-AI to access your microphone to record meeting audio."
}
],
"expo-secure-store",
[
"expo-notifications",
{
"icon": "./assets/smart-mom.png"
}
]
],
"extra": {
"router": {},
"eas": {
"projectId": "0221c0f8-c280-4d1a-9774-d00f63112b11"
}
},
"owner": "jitamint"
}
}