-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
42 lines (42 loc) · 954 Bytes
/
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
{
"expo": {
"name": "Pixel Weather",
"slug": "pixel-weather",
"version": "1.0",
"orientation": "portrait",
"icon": "./assets/logo.png",
"userInterfaceStyle": "automatic",
"splash": {
"resizeMode": "cover",
"backgroundColor": "#000"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.lifeitech.pixelweather"
},
"android": {
"icon": "./assets/logo.png",
"adaptiveIcon": {
"foregroundImage": "./assets/logo-foreground.png",
"backgroundColor": "#000"
},
"backgroundColor": "#000",
"softwareKeyboardLayoutMode": "pan",
"package": "com.lifeitech.pixelweather"
},
"plugins": [
"sentry-expo"
],
"extra": {
"eas": {
"projectId": "6f85fe7f-b6f8-4cd9-bc22-3c74afd9543c"
}
}
}
}