-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp.json
More file actions
34 lines (34 loc) · 1017 Bytes
/
Copy pathapp.json
File metadata and controls
34 lines (34 loc) · 1017 Bytes
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
{
"expo": {
"name": "FakeCall Shield",
"slug": "fake-call-shield",
"version":"1.0.0",
"scheme": "fakecallshield",
"orientation": "portrait",
"userInterfaceStyle": "dark",
"splash": {
"backgroundColor": "#0A0E1A"
},
"android": {
"adaptiveIcon": { "backgroundColor": "#0A0E1A" },
"permissions": ["RECORD_AUDIO", "READ_CALL_LOG", "VIBRATE", "READ_CONTACTS", "READ_PHONE_STATE"],
"package": "com.fakecallshield.app"
},
"ios": {
"bundleIdentifier": "com.fakecallshield.app",
"infoPlist": {
"NSMicrophoneUsageDescription": "FakeCall Shield analyzes voice audio entirely on-device to detect spoofed calls. Audio never leaves your phone.",
"NSContactsUsageDescription": "Optional: cross-reference caller ID with your contacts."
}
},
"plugins": [
"expo-router",
"expo-av",
"expo-contacts",
"./plugins/withCallScreening"
],
"experiments": {
"typedRoutes": true
}
}
}