-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
47 lines (47 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
44
45
46
47
{
"expo": {
"name": "Murder Game",
"slug": "MurderGame",
"description": "",
"githubUrl": "https://github.com/elKei24/murder-app",
"privacy": "unlisted",
"platforms": [
"ios",
"android",
"web"
],
"version": "0.1.1",
"orientation": "portrait",
"entryPoint": "./src/App.js",
"icon": "./assets/icon.png",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": [
"assets/*"
],
"ios": {
"bundleIdentifier": "xyz.elite-se.murdergame",
"buildNumber": "1.0.0",
"supportsTablet": true
},
"android": {
"package": "xyz.elite_se.murdergame",
"versionCode": 1,
"googleServicesFile": "./android/google-services.json"
},
"androidStatusBar": {
"backgroundColor": "#C1272D"
},
"notification": {
"icon": "./assets/notifications_icon.png",
"color": "#000000",
"iosDisplayInForeground": true
}
}
}