-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
56 lines (56 loc) · 1.62 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
{
"expo": {
"name": "Monch",
"slug": "Monch",
"privacy": "public",
"platforms": [
"ios",
"android",
"web"
],
"version": "0.0.2",
"primaryColor": "#5663FF",
"orientation": "portrait",
"icon": "./assets/LogoNoShadow.png",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "cover",
"backgroundColor": "#5663FF"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": true
},
"githubUrl": "https://github.com/MrTimcakes/Monch-Native",
"androidStatusBar": {
"barStyle": "light-content",
"backgroundColor": "#5663FF"
},
"androidNavigationBar": {
"barStyle": "light-content",
"backgroundColor": "#5663FF"
},
"packagerOpts": {
"config": "metro.config.js",
"sourceExts": [
"expo.ts",
"expo.tsx",
"expo.js",
"expo.jsx",
"ts",
"tsx",
"js",
"jsx",
"json",
"wasm",
"svg"
]
},
"description": "Monch is a dissertation project for Computer Science at the University of Lincoln.\nMonch is a dietary assistant app, a platform for food recommendations and recipe guides based on the food already at home. Monch learns what ingredients are available from receipts or product barcodes and suggests recipes based on meals similar users have enjoyed. The app is also to act as a social media platform enabling the distribution of recipes through promotional type posts from chefs or discovery of what friends have recently cooked."
}
}