-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
44 lines (44 loc) · 1.02 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
{
"expo": {
"privacy":"public",
"name": "covidtracker",
"slug": "covidtracker",
"platforms": [
"ios",
"android"
],
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/icon.png",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#00B626"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"bundleIdentifier": "com.magicstar.covidtrackersantos",
"buildNumber": "1.0.0",
"supportsTablet": true
},
"android": {
"package": "com.magicstar.covidtrackersantos",
"versionCode": 1,
"config": {
"googleMaps": {"apiKey": "put your api key for bundle or prodution, in dev no need"}
}
},
"androidStatusBar": {
"hidden": true,
"translucent": true,
"barStyle": "light-content",
"backgroundColor": "#00000000"
},
"entryPoint": "node_modules/expo/AppEntry.js"
}
}