-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathapp.json
31 lines (31 loc) · 818 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": "Redux Observable Todo",
"slug": "redux-observable-todo",
"privacy": "public",
"sdkVersion": "34.0.0",
"platforms": [
"ios",
"android"
],
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/icon.png",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": [
"./assets/*"
],
"ios": {
"supportsTablet": true
},
"description": "Sample app for blog post \"Building reactive apps with Redux and Redux-Observable\"\nSource Code: https://github.com/sourabhv/redux-observable-todo",
"githubUrl": "https://github.com/sourabhv/redux-observable-todo"
}
}