-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.json
91 lines (91 loc) · 2.68 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"expo": {
"name": "Enatega Multivendor Rider",
"description": "Enatega is a starter kit food ordering app built in React Native using Expo for IOS and Android. It's made keeping good aesthetics in mind as well keeping the best coding practices in mind. Its fully customisable to easily help you in your next food delivery project. https://market.nativebase.io/view/react-native-food-delivery-backend-app",
"version": "1.1.30",
"slug": "food-delivery-rider-multivendor",
"orientation": "portrait",
"icon": "./lib/assets/images/icon.png",
"assetBundlePatterns": [
"**/*"
],
"scheme": "myapp",
"userInterfaceStyle": "automatic",
"newArchEnabled": true,
"plugins": [
"expo-router",
[
"expo-splash-screen",
{
"image": "./lib/assets/images/icon.png",
"imageWidth": 200,
"resizeMode": "contain",
"backgroundColor": "#000"
}
],
[
"@sentry/react-native/expo",
{
"organization": "ninjas-code",
"project": "enatega-rider-app",
"url": "https://sentry.io/"
}
],
[
"expo-image-picker",
{
"photosPermission": "The app accesses your photos for license, vehicle plate and profile image. Please allow these to continue using the app."
}
],
"expo-font"
],
"platforms": [
"ios",
"android"
],
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.enatega.multirider",
"config": {
"googleMapsApiKey": "AIzaSyCcm7_Wd7uvmC9YnYLu2JHGWPt6z1MaL1E"
},
"icon": "./lib/assets/images/icon.png",
"infoPlist": {
"NSLocationWhenInUseUsageDescription": "$(PRODUCT_NAME) uses your location for features like finding orders nearby and tracking customer orders!",
"UIBackgroundModes": [
"location",
"fetch",
"remote-notification"
],
"ITSAppUsesNonExemptEncryption": false
}
},
"android": {
"versionCode": 38,
"googleServicesFile": "./google-services.json",
"permissions": [
"ACCESS_COARSE_LOCATION",
"ACCESS_FINE_LOCATION"
],
"config": {
"googleMaps": {
"apiKey": "AIzaSyCcm7_Wd7uvmC9YnYLu2JHGWPt6z1MaL1E"
}
},
"package": "com.enatega.multirider",
"icon": "./lib/assets/images/icon.png",
"adaptiveIcon": {
"foregroundImage": "./lib/assets/images/icon.png",
"backgroundColor": "#ffffff"
}
},
"extra": {
"eas": {
"projectId": "9144a7fc-b205-464a-8fb6-64eb66fc8743"
}
},
"experiments": {
"typedRoutes": true
}
}
}