-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathapp.json
60 lines (60 loc) · 2.05 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
57
58
59
60
{
"expo": {
"name": "Expiry Utility",
"slug": "expiry-util",
"privacy": "public",
"platforms": ["ios", "android", "web"],
"version": "1.4.1",
"orientation": "portrait",
"icon": "./assets/images/logo.png",
"splash": {
"image": "./assets/images/splash.png",
"resizeMode": "contain",
"backgroundColor": "#aed59e"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": ["**/*"],
"ios": {
"supportsTablet": true,
"bundleIdentifier": "hu.ivgraai.expiry-util",
"buildNumber": "1.4.1",
"infoPlist": {
"CFBundleAllowMixedLocalizations": true
}
},
"android": {
"package": "hu.ivgraai.expiry_util"
},
"locales": {
"en": "./constants/languages/english.json",
"hu": "./constants/languages/hungarian.json",
"fr": "./constants/languages/french.json",
"es": "./constants/languages/spanish.json",
"hi": "./constants/languages/hindi.json",
"tr": "./constants/languages/turkish.json"
},
"description": "This app does help you with keeping track of your perishable foods by notifications, etc. Moreover you can share these goods with others if you think.",
"primaryColor": "#556b2f",
"extra": {
"init": false,
"serverUrl": "http://192.168.8.104:8080/v1/",
"httpTimeout": 3500,
"cache": {
"imageEvictionFrequency": "monthly",
"data": {
"enabled": true,
"evictionFrequency": "weekly",
"latitudeThreshold": 0.15,
"longitudeThreshold": 0.15
}
},
"defaultCurrentPosition": {
"latitude": 51.509865,
"longitude": -0.118092
}
},
"userInterfaceStyle": "automatic"
}
}