-
Notifications
You must be signed in to change notification settings - Fork 5
/
app.json
39 lines (39 loc) · 1.07 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
{
"name": "ECRT Diaspora",
"displayName": "ECRT Diaspora",
"expo": {
"name": "ECRT Diaspora",
"slug": "ecrt-diaspora",
"version": "1.0.0",
"icon": "./src/assets/icon.png",
"splash": {
"image": "./src/assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#FDD542"
},
"platforms": [
"ios",
"android",
"web"
],
"assetBundlePatterns": [
"**/*"
],
"updates": {
"enabled": true,
"checkAutomatically": "ON_LOAD"
},
"android": {
"package": "app.ecrt.tracker",
"googleServicesFile": "./src/api/firebase/config/google-services.json"
},
"ios": {
"bundleIdentifier": "app.ecrt.tracker",
"googleServicesFile": "./src/api/firebase/config/GoogleService-Info.plist",
"supportsTablet": true,
"requireFullScreen": true
},
"description": "App built to help the diaspora tackle issues related to COVID-19. Developed by Ethiopia COVID-19 Response team",
"githubUrl": "https://github.com/africa-covid-19-response-toolkit/diaspora-app"
}
}