-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
43 lines (43 loc) · 908 Bytes
/
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
{
"expo": {
"name": "the-location-app",
"slug": "the-location-app",
"privacy": "public",
"platforms": [
"ios",
"android"
],
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/places.png",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#171717"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"buildNumber": "1.0.0",
"supportsTablet": true
},
"android": {
"package": "com.adityakshettri.the_location_app",
"versionCode": 1,
"permissions": [
"ACCESS_FINE_LOCATION",
"CAMERA",
"WRITE_EXTERNAL_STORAGE"
],
"config": {
"googleMaps": {
"apiKey": "AIzaSyBOdw28MRlQkQyQ1XH-wJm5dtklXj6J3zQ"
}
}
}
}
}