-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.json
49 lines (49 loc) · 1.34 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
{
"expo": {
"name": "Continuum",
"slug": "Continuum",
"version": "1.0.0",
"description": "A simple, configurable daily habit tracking app. Add positive or negative habits, log each day and analyze your progress.",
"owner": "coldham10",
"privacy": "public",
"githubUrl": "https://github.com/coldham10/Continuum",
"primaryColor": "#009BE4",
"orientation": "portrait",
"scheme": "myapp",
"userInterfaceStyle": "automatic",
"splash": {
"image": "./assets/images/continuum.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.tripconey.continuum",
"icon": "./assets/images/bigcwhitesquare.png"
},
"web": {
"favicon": "./assets/images/favicon.png"
},
"android": {
"package": "com.tripconey.continuum",
"versionCode": 1,
"permissions": [
"WRITE_EXTERNAL_STORAGE",
"READ_EXTERNAL_STORAGE",
"VIBRATE"
],
"icon": "./assets/images/bigcwhiterounded.png",
"adaptiveIcon": {
"foregroundImage": "./assets/images/littlec.png",
"backgroundColor": "#FFFFFF"
}
},
"entryPoint": "node_modules/expo/AppEntry.js"
}
}