-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
50 lines (50 loc) · 1.79 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
{
"expo": {
"name": "InfectionTracker",
"slug": "infectiontracker",
"privacy": "public",
"scheme": "infectiontracker",
"sdkVersion": "36.0.0",
"platforms": ["ios", "android", "web"],
"version": "1.6.0",
"orientation": "portrait",
"icon": "./assets/icon.jpg",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#ebebeb"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": ["**/*"],
"ios": {
"supportsTablet": true,
"bundleIdentifier": "me.lindner.infectiontracker",
"buildNumber": "1.6.0"
},
"android": {
"package": "me.lindner.infectiontracker",
"versionCode": 5,
"permissions": [
"CAMERA",
"READ_EXTERNAL_STORAGE",
"READ_PHONE_STATE",
"VIBRATE",
"com.anddoes.launcher.permission.UPDATE_COUNT",
"com.android.launcher.permission.INSTALL_SHORTCUT",
"com.google.android.c2dm.permission.RECEIVE",
"com.google.android.gms.permission.ACTIVITY_RECOGNITION",
"com.google.android.providers.gsf.permission.READ_GSERVICES",
"com.htc.launcher.permission.READ_SETTINGS",
"com.htc.launcher.permission.UPDATE_SHORTCUT",
"com.majeur.launcher.permission.UPDATE_BADGE",
"com.sec.android.provider.badge.permission.READ",
"com.sec.android.provider.badge.permission.WRITE",
"com.sonyericsson.home.permission.BROADCAST_BADGE"
]
},
"description": "This app aims at informing people about the health status of recent contacts to reduce the spread of COVID-19 virus. We pay special attention to data protection. You remain anonymous without losing any functions.",
"githubUrl": "https://github.com/sebsebli/infectiontracker"
}
}