-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
43 lines (43 loc) · 1.08 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
{
"expo": {
"name": "Temporizador de Cozinha",
"slug": "temporizador-de-cozinha",
"version": "1.0.0",
"githubUrl": "https://github.com/RodrigoBeatriz/temporizador-de-cozinha-mobile",
"orientation": "landscape",
"icon": "./assets/images/icon.png",
"scheme": "myapp",
"userInterfaceStyle": "dark",
"splash": {
"image": "./assets/images/splash.png",
"resizeMode": "cover",
"backgroundColor": "#41304C"
},
"notification": {
"icon": "./assets/res/drawable-xxxhdpi/icon.png",
"color": "#993D63"
},
"updates": {
"enabled": true,
"checkAutomatically": "ON_LOAD",
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": true,
"buildNumber": "1.0.0"
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/images/adaptive-icon.png",
"backgroundColor": "#41304C"
},
"package": "com.rbb.temporizador_de_cozinha"
},
"web": {
"favicon": "./assets/images/favicon.png"
}
}
}