-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
75 lines (75 loc) · 2.17 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"expo": {
"name": "Sentinel",
"description": "App that allows users to keep track of their loved ones",
"slug": "sentinelApp",
"backgroundColor": "#121212",
"owner": "ELV, MS, CM, AD, JC",
"privacy": "public",
"sdkVersion": "36.0.0",
"android": {
"package": "com.safeguardInc.sentinel",
"versionCode": 1,
"permissions": [
"ACCESS_COARSE_LOCATION",
"ACCESS_FINE_LOCATION",
"CAMERA",
"MANAGE_DOCUMENTS",
"READ_CONTACTS",
"READ_CALENDAR",
"WRITE_CALENDAR",
"READ_EXTERNAL_STORAGE",
"READ_PHONE_STATE",
"RECORD_AUDIO",
"USE_FINGERPRINT",
"VIBRATE",
"WAKE_LOCK",
"WRITE_EXTERNAL_STORAGE",
"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"
],
"config": {
"googleMaps": {
"apiKey": "process.env.GOOGLEMAPS_KEY"
}
}
},
"platforms": [
"android"
],
"githubUrl": "https://github.com/EmirVelazquez/sentinel",
"version": "1.0.0",
"orientation": "portrait",
"primaryColor": "#121212",
"icon": "./assets/iconLogo.png",
"splash": {
"image": "./assets/splashImage.png",
"resizeMode": "contain",
"backgroundColor": "#121212"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": [
"**/*"
],
"androidStatusBar": {
"barStyle:": "dark-content",
"backgroundColor": "#000000"
},
"androidNavigationBar": {
"visible": true,
"barStyle": "dark-content",
"backgroundColor": "#000000"
}
}
}