-
Notifications
You must be signed in to change notification settings - Fork 3
/
app.json
31 lines (31 loc) · 988 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
27
28
29
30
31
{
"expo": {
"name": "Photo Favorite",
"description": "An app to learn React Native.\n\nTap on Photos to see the Authors and tap on the Star to favorite (or un-favorite) photos.\nUsed at André Kovac's workshops. Visit his homepage to get in touch with him to learn React Native in an interactive way: https://www.andrekovac.com/",
"slug": "PhotoFavorite",
"githubUrl": "https://github.com/andrekovac/PhotoFavorite/",
"privacy": "public",
"version": "1.1.1",
"orientation": "portrait",
"icon": "./assets/images/icon.png",
"scheme": "photo-favorite",
"userInterfaceStyle": "automatic",
"splash": {
"image": "./assets/images/splash.png",
"resizeMode": "contain",
"backgroundColor": "#472D4E"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": true
},
"web": {
"favicon": "./assets/images/favicon.png"
}
}
}