-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
67 lines (67 loc) · 1.8 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
56
57
58
59
60
61
62
63
64
65
66
67
{
"expo": {
"name": "brokier",
"slug": "brokier",
"scheme": "brokier",
"platforms": [
"ios",
"android"
],
"version": "1.0",
"orientation": "portrait",
"icon": "./src/assets/icons/icon.png",
"splash": {
"image": "./src/assets/images/splash.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"buildNumber": "11",
"supportsTablet": true,
"bundleIdentifier": "com.brokier.app",
"infoPlist": {
"NSLocationAlwaysUsageDescription": "This app uses the location to find the Cabs near you.",
"NSLocationWhenInUseUsageDescription": "This app uses the location to find the Cabs near you.",
"NSCameraUsageDescription": "This app uses the camera to take your profile picture.",
"NSPhotoLibraryUsageDescription": "This app uses Photo Library for uploading your profile picture.",
"UIBackgroundModes": [
"location",
"fetch"
]
},
"config": {
"googleMapsApiKey": "AIzaSyA8EWQFs6DxdpVM433_WVF9DilTKpEfHx4"
}
},
"android": {
"package": "com.brokier.app",
"versionCode": 11,
"permissions": [
"CAMERA",
"READ_EXTERNAL_STORAGE",
"WRITE_EXTERNAL_STORAGE",
"LOCATION",
"ACCESS_FINE_LOCATION",
"ACCESS_COARSE_LOCATION",
"CAMERA_ROLL"
],
"config": {
"googleMaps": {
"apiKey": "AIzaSyA8EWQFs6DxdpVM433_WVF9DilTKpEfHx4"
}
}
},
"facebookScheme": "fb220105416074930",
"facebookAppId": "220105416074930",
"facebookDisplayName": "Brokier",
"web": {
"favicon": "./src/assets/icons/favicon.png"
}
}
}