-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
95 lines (93 loc) · 2.33 KB
/
Copy pathapp.json
File metadata and controls
95 lines (93 loc) · 2.33 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"expo": {
"name": "VanGo",
"slug": "vango",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/icons/logo.png",
"userInterfaceStyle": "light",
"splash": {
"image": "./assets/icons/logo.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": true,
"config": {
"googleMapsApiKey": "AIzaSyDz2DzpYHdURmO-51wsXxbc3wOF4QSizrA"
},
"infoPlist": {
"NSPhotoLibraryUsageDescription": "Allow $(PRODUCT_NAME) to access your photos.",
"NSPhotoLibraryAddUsageDescription": "Allow $(PRODUCT_NAME) to save photos."
}
},
"androidStatusBar": {
"backgroundColor": "#00000000",
"translucent": true
},
"android": {
"package": "com.example.VanGo",
"googleServicesFile": "./google-services.json",
"usesCleartextTraffic": true,
"config": {
"googleMaps": {
"apiKey": "AIzaSyDz2DzpYHdURmO-51wsXxbc3wOF4QSizrA"
},
"cleartext": true
},
"adaptiveIcon": {
"foregroundImage": "./assets/icons/logo.png",
"backgroundColor": "#ffffff"
},
"permissions": [
"android.permission.CAMERA",
"android.permission.RECORD_AUDIO",
"android.permission.READ_EXTERNAL_STORAGE",
"android.permission.WRITE_EXTERNAL_STORAGE",
"android.permission.ACCESS_MEDIA_LOCATION"
]
},
"web": {
"favicon": "./assets/favicon.png"
},
"plugins": [
[
"expo-build-properties",
{
"android": {
"usesCleartextTraffic": true
}
}
],
[
"expo-camera",
{
"cameraPermission": "Allow $(PRODUCT_NAME) to access your camera."
}
],
[
"expo-media-library",
{
"photosPermission": "Allow $(PRODUCT_NAME) to access your photos.",
"savePhotosPermission": "Allow $(PRODUCT_NAME) to save photos.",
"isAccessMediaLocationEnabled": "true"
}
],
[
"@stripe/stripe-react-native",
{
"enableGooglePay": "true"
}
]
],
"extra": {
"eas": {
"projectId": "34226009-fb2d-4f09-b318-91c346854e49"
}
},
"owner": "hareema"
}
}