-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
59 lines (58 loc) · 1.54 KB
/
app.json
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
{
"expo": {
"name": "conFusión",
"slug": "confusionapp",
"privacy": "public",
"platforms": [
"ios",
"android",
"web"
],
"version": "0.1.0",
"orientation": "portrait",
"icon": "./assets/icon.png", // showed by default as icon of the app -> 1024x1024
"splash": {
"image": "./assets/splash.png", // displayed while loading the app on full screen (transparent background) -> 1024x1024
"resizeMode": "contain",
"adaptiveIcon": true,
"backgroundColor": "#E0FA4E"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": true,
"bundleIdentifier": "es.beniconfusionfest.confusion",
"infoPlist": {
"NSLocationWhenInUseUsageDescription": "Mostraremos tu localización en los mapas para que ubiques los espacios más fácilmente"
},
"buildNumber": "19"
},
"android": {
"package": "es.beniconfusionfest.confusion",
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive_icon_foreground.png", // overwrite default icon of the app for android -> 1024x1024
"backgroundColor": "#E0FA4E"
},
"permissions": [
"INTERNET",
"WRITE_SETTINGS",
"ACCESS_FINE_LOCATION"
],
"versionCode": 23,
"config": {
"googleMaps": {
"apiKey": "<API_KEY>"
}
}
},
"extra": {
"eas": {
"projectId": "728863cd-f38c-4412-a4fa-befa5bbb9696"
}
}
}
}