-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathapp.json
26 lines (26 loc) · 808 Bytes
/
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
{
"expo": {
"name": "AlgoExpert's Mobile App",
"slug": "app-algoexpert",
"privacy": "public",
"sdkVersion": "36.0.0",
"platforms": ["ios", "android"],
"version": "1.0.0",
"orientation": "portrait",
"icon": "./src/assets/icon.png",
"splash": {
"image": "./src/assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#02203c"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": ["**/*"],
"ios": {
"supportsTablet": true
},
"description": "It's a mobile version of the AlgoExpert platform. This project was created for the Software Engineering Project CONTEST - Winter 2020 from Clément Mihailescu & AlgoExpert.",
"githubUrl": "https://github.com/matheuskuster/app-algoexpert"
}
}