-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.json
69 lines (69 loc) · 1.69 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
60
61
62
63
64
65
66
67
68
69
{
"expo": {
"name": "Do!! You!!! World",
"slug": "DoYouWorld",
"version": "0.4.10",
"backgroundColor": "#1c1c1c",
"orientation": "portrait",
"icon": "./assets/images/icon.png",
"scheme": "myapp",
"userInterfaceStyle": "automatic",
"plugins": [
[
"expo-font",
{
"fonts": ["./assets/fonts/SpaceMono-Regular.ttf"]
}
],
[
"expo-build-properties",
{
"android": {
"compileSdkVersion": 34,
"targetSdkVersion": 34,
"buildToolsVersion": "33.0.0"
}
}
]
],
"extra": {
"eas": {
"projectId": "1e79607b-3c62-48e4-a448-4399ff4c9879"
}
},
"splash": {
"image": "./assets/images/splashV2.png",
"resizeMode": "cover",
"backgroundColor": "#1c1c1c"
},
"notification": {
"icon": "./assets/images/notifs.png",
"color": "#FFDC3B"
},
"updates": {
"fallbackToCacheTimeout": 0,
"url": "https://exp.host/@joelbeaudon/DoYouWorld"
},
"assetBundlePatterns": ["**/*"],
"ios": {
"bundleIdentifier": "com.wonkylines.doyouworld",
"buildNumber": "0.4.10",
"supportsTablet": false,
"infoPlist": {
"UIBackgroundModes": ["fetch", "audio", "remote-notification"]
}
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/images/adaptive-icon.png",
"backgroundColor": "#ffffff"
},
"permissions": ["android.permission.FOREGROUND_SERVICE_MEDIA_PLAYBACK"],
"package": "com.wonkylines.doyouworld",
"versionCode": 28
},
"web": {
"favicon": "./assets/images/favicon.png"
}
}
}