-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
65 lines (65 loc) · 1.67 KB
/
app.json
File metadata and controls
65 lines (65 loc) · 1.67 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
{
"expo": {
"scheme": "ebricole",
"name": "e-bricole",
"slug": "e-bricole",
"version": "1.0.0",
"orientation": "portrait",
"userInterfaceStyle": "light",
"newArchEnabled": true,
"icon": "./assets/images/logo.png",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"jsEngine": "jsc",
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.ebricole.app",
"infoPlist": {
"NSLocationWhenInUseUsageDescription": "This app uses your location to show nearby services.",
"NSLocationAlwaysUsageDescription": "This app needs access to your location even when the app is in the background.",
"ITSAppUsesNonExemptEncryption": false
}
},
"android": {
"edgeToEdgeEnabled": true,
"package": "com.ebricole.app",
"permissions": [
"android.permission.RECORD_AUDIO",
"android.permission.INTERNET",
"android.permission.ACCESS_NETWORK_STATE"
],
"notification": {
"icon": "./assets/images/white_logo.png",
"color": "#ffffff"
}
},
"web": {
"favicon": "./assets/favicon.png"
},
"plugins": [
"expo-router",
[
"expo-image-picker",
{
"photosPermission": "The app accesses your photos to let you share them with your friends."
}
],
[
"expo-notifications",
{
"icon": "./assets/images/logo.png",
"color": "#ffffff"
}
]
],
"extra": {
"router": {},
"eas": {
"projectId": "d57d47d3-c762-421c-8b19-3fbfdae4d151"
}
}
}
}