-
Notifications
You must be signed in to change notification settings - Fork 2
/
app.json
42 lines (42 loc) · 1.4 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
{
"expo": {
"name": "MedBlockChain",
"description": "Proof Of Concept App Build For Department Of Pharmacy CPH University. This app demonstrate a medical blockchain in the battle against falsified medicine and how patient data consent can lead to a more optimal prescription dose (a.k.a. personalized medicine)",
"githubUrl": "https://github.com/Norfeldt/MedBlockChain",
"slug": "medblockchain",
"privacy": "public",
"platforms": ["ios", "android"],
"version": "01.03.02",
"orientation": "portrait",
"icon": "./assets/images/icon.png",
"splash": {
"image": "./assets/images/splash.png",
"resizeMode": "contain",
"backgroundColor": "#063796"
},
"updates": {
"fallbackToCacheTimeout": 10000
},
"assetBundlePatterns": ["assets/**/*"],
"ios": {
"bundleIdentifier": "com.norfeldt.medblockchain",
"supportsTablet": true,
"config": {
"usesNonExemptEncryption": false
},
"infoPlist": {
"NSCameraUsageDescription": "This app uses the camera to scan barcodes."
}
},
"android": {
"package": "com.norfeldt.medblockchain",
"versionCode": 19,
"icon": "./assets/images/icon_android.png",
"permissions": ["CAMERA", "READ_EXTERNAL_STORAGE", "WRITE_EXTERNAL_STORAGE"]
},
"androidStatusBar": {
"barStyle": "dark-content",
"backgroundColor": "#F0F0F0"
}
}
}