-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
55 lines (55 loc) · 1.42 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
{
"expo": {
"name": "Device Management App",
"owner": "digitalag",
"slug": "deviceManagementApp",
"version": "2.5.3",
"icon": "./assets/icon.png",
"scheme": "dma",
"splash": {
"image": "./assets/splash-overlay.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.dpi.deviceManagementApp",
"infoPlist": {
"NSCameraUsageDescription": "Allow Device Management app to use your camera to scan QR codes?",
"NSLocationWhenInUseUsageDescription": "Allow Device Management App to use your location to see devices nearby?"
}
},
"android": {
"package": "com.dpi.deviceManagementApp",
"versionCode": 16,
"adaptiveIcon": {
"foregroundImage": "./assets/icon.png",
"backgroundColor": "#FFFFFF"
},
"config": {
"googleMaps":{
"apiKey": ""
}
}
},
"web": {
"favicon": "./assets/favicon.png"
},
"plugins": [
[
"expo-media-library",
{
"photosPermission": "Allow $(PRODUCT_NAME) to access your photos.",
"savePhotosPermission": "Allow $(PRODUCT_NAME) to save photos.",
"isAccessMediaLocationEnabled": true
}
]
]
}
}