-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
37 lines (37 loc) · 1.03 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
{
"expo": {
"name": "AHRO",
"icon": "./app/assets/images/app-icon.png",
"splash": {
"image": "./app/assets/images/splash-screen.png",
"resizeMode": "cover",
"backgroundColor": "#333"
},
"version": "1.0.0",
"slug": "ahro",
"sdkVersion": "27.0.0",
"ios": {
"bundleIdentifier": "com.dlsuuniweek.ahro",
"config": {
"googleMapsApiKey": "AIzaSyAbOeY0nQzcqNGmw7JfHWFs0A6c_X6L1Lc"
},
"infoPlist": {
"NSCameraUsageDescription": "This app uses the camera to scan QR codes on the event game.",
"NSLocationWhenInUseUsageDescription": "This app uses location to help guests and freshmen track the event location"
},
},
"android": {
"versionCode": 1,
"package": "com.dlsuuniweek.ahro",
"config": {
"googleMaps": { "apiKey": "AIzaSyCsyf9xTR1S3OXCBDnCFaiLG8DyJQEYp6Y" }
},
"permissions" : [
"CAMERA",
"ACCESS_FINE_LOCATION",
"ACCESS_COARSE_LOCATION",
"INTERNET"
]
}
}
}