-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
41 lines (41 loc) · 1.02 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
{
"expo": {
"name": "PlaceBook",
"description": "Save and access all of your life's important places.",
"slug": "PlaceBook",
"privacy": "public",
"platforms": [
"ios",
"android"
],
"githubUrl": "https://github.com/MiguelNiblock/PlaceBook-App",
"version": "1.0.1",
"orientation": "portrait",
"primaryColor": "#42a878",
"extra": {},
"icon": "./assets/icon.png",
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": true,
"config": {
"googleMapsApiKey": "AIzaSyAtlKbaFmsgpdzJzWaWxc79QoNlugqtAx0"
}
},
"android": {
"versionCode": 2,
"package": "com.miguelniblock.PlaceBook",
"permissions": ["ACCESS_FINE_LOCATION"],
"config": {
"googleMaps": {
"apiKey": "AIzaSyDe1__AtFL5ENtGVrYIuXI0AUkewvkVSUg"
}
},
"playStoreUrl": "https://play.google.com/store/apps/details?id=com.miguelniblock.PlaceBook"
}
}
}