-
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.75 KB
/
app.json
File metadata and controls
67 lines (67 loc) · 1.75 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": "resQ",
"slug": "resQ",
"scheme": "resq",
"version": "1.0.0",
"web": {
"favicon": "./assets/favicon.png"
},
"experiments": {
"tsconfigPaths": true
},
"plugins": [
"expo-router",
"expo-web-browser",
[
"expo-audio",
{
"microphonePermission": "This app needs access to your microphone to record voice notes."
}
],
"expo-location"
],
"orientation": "portrait",
"icon": "./assets/icon.png",
"userInterfaceStyle": "light",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": true,
"infoPlist": {
"NSMicrophoneUsageDescription": "This app needs access to your microphone to record voice notes.",
"NSLocationWhenInUseUsageDescription": "This app needs access to your location to send emergency services to your exact position.",
"ITSAppUsesNonExemptEncryption": false
},
"bundleIdentifier": "com.knextkoder.resQ"
},
"android": {
"permissions": [
"RECORD_AUDIO",
"ACCESS_COARSE_LOCATION",
"ACCESS_FINE_LOCATION",
"android.permission.RECORD_AUDIO",
"android.permission.MODIFY_AUDIO_SETTINGS",
"android.permission.ACCESS_COARSE_LOCATION",
"android.permission.ACCESS_FINE_LOCATION"
],
"adaptiveIcon": {
"foregroundImage": "./assets/icon.png",
"backgroundColor": "#ffffff"
},
"package": "com.knextkoder.resQ"
},
"extra": {
"router": {},
"eas": {
"projectId": "3a1bd77c-fd29-4d29-9b51-03f1da7fc0ff"
}
}
}
}