-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathapp.json
More file actions
92 lines (92 loc) · 2.38 KB
/
Copy pathapp.json
File metadata and controls
92 lines (92 loc) · 2.38 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
{
"expo": {
"name": "lumi",
"slug": "lumi",
"icon": "./icon.png",
"version": "1.0.0",
"orientation": "portrait",
"scheme": "myapp",
"userInterfaceStyle": "automatic",
"splash":{
"image":"./assets/images/icon.png",
"resizeMode":"contain",
"backgroundColour":"#ffffff"
},
"ios": {
"supportsTablet": true
},
"android": {
"config":{
"googleMaps":{
"apiKey":"AIzaSyB-ZtRhnWOQXr7AsYhThpfYviYVo0rmj_Q"
}
},
"googleServicesFile":"./google-services.json",
"permissions": [
"ACCESS_FINE_LOCATION",
"ACCESS_COARSE_LOCATION",
"FOREGROUND_SERVICE_LOCATION",
"android.permission.ACCESS_COARSE_LOCATION",
"android.permission.ACCESS_FINE_LOCATION",
"android.permission.CAMERA",
"android.permission.RECORD_AUDIO",
"android.permission.READ_EXTERNAL_STORAGE",
"android.permission.WRITE_EXTERNAL_STORAGE",
"android.permission.ACCESS_MEDIA_LOCATION"
],
"package": "com.ray8118.lumi"
},
"web": {
"bundler": "metro",
"output": "static"
},
"plugins": [
[
"expo-location",
{
"locationAlwaysAndWhenInUsePermission": "Allow $(PRODUCT_NAME) to use your location.",
"isAndroidForegroundServiceEnabled": true
}
],
"expo-router",
[
"expo-camera",
{
"cameraPermission": "Allow $(PRODUCT_NAME) to access your camera",
"microphonePermission": "Allow $(PRODUCT_NAME) to access your microphone",
"recordAudioAndroid": true
}
],
[
"expo-media-library",
{
"photosPermission": "Allow $(PRODUCT_NAME) to access your photos",
"savePhotosPermission": "Allow $(PRODUCT_NAME) to access your photos",
"isAccessMediaLocationEnabled": true
}
],
[
"expo-notifications",
{
"defaultChannel": "default"
}
],
[
"expo-image-picker",
{
"photosPermission": "Select abd upload images",
"cameraPermission": "Allow $(PRODUCT_NAME) to access your camera"
}
]
],
"experiments": {
"typedRoutes": true
},
"extra": {
"eas": {
"projectId": "59100023-4027-415c-b8fd-1f94be6dd4e2"
}
},
"owner": "ray8118"
}
}