-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
38 lines (38 loc) · 1 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
{
"expo": {
"name": "Driving Log",
"description": "A simple, FLOSS app to log driving hours.",
"slug": "driving-log",
"version": "1.0.2",
"orientation": "portrait",
"icon": "./assets/icon.png",
"userInterfaceStyle": "automatic",
"githubUrl": "https://github.com/lexiroth/driving-log",
"owner": "lexiroth",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#000000"
},
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.lexiroth.drivinglog"
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon-fg.png",
"backgroundImage": "./assets/adaptive-icon-bg.png",
"monochromeImage": "./assets/adaptive-icon-mono.png"
},
"package": "com.lexiroth.drivinglog"
},
"web": {
"favicon": "./assets/favicon.png"
},
"extra": {
"eas": {
"projectId": "c0016e88-7428-4b1e-bb24-a264cb3ed175"
}
}
}
}