-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
112 lines (112 loc) · 3.04 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"expo": {
"name": "Nana",
"description": "Order food online and get it delivered in minutes",
"slug": "nana-app",
"owner": "nana_logistics",
"version": "1.10.1",
"orientation": "portrait",
"scheme": "nanaDelivery",
"userInterfaceStyle": "automatic",
"jsEngine": "hermes",
"plugins": [
[
"expo-build-properties",
{
"android": {
"usesCleartextTraffic": true
}
}
],
[
"expo-location",
{
"locationWhenInUsePermission": "Nana requires access to your location to show restaurants/shops nearest to you, calculate delivery fees and delivery time estimates",
"locationAlwaysPermission": "Nana requires access to your location to show restaurants/shops nearest to you, calculate delivery fees and delivery time estimates"
}
],
"expo-font",
"expo-localization",
"expo-secure-store",
[
"onesignal-expo-plugin",
{
"mode": "production"
}
]
],
"splash": {
"image": "./assets/app-config/nana-splash.png",
"resizeMode": "cover",
"backgroundColor": "#00C2E8"
},
"updates": {
"fallbackToCacheTimeout": 0,
"url": "https://u.expo.dev/8235481d-016d-4aa1-a436-7cc06ccc1f14"
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"associatedDomains": [
"appLinks:trynanaapp.com"
],
"icon": "./assets/app-config/Icon-blue-ios1024.png",
"supportsTablet": false,
"bundleIdentifier": "com.nanaeats.nana.app",
"config": {
"googleMapsApiKey": "AIzaSyBxd-WGMl-H1BdgKsG2dNBYoQiWXsXc-Y8"
}
},
"android": {
"icon": "./assets/app-config/Icon-Android-512px.png",
"adaptiveIcon": {
"foregroundImage": "./assets/app-config/Icon-Android-512px.png",
"backgroundColor": "#000000"
},
"permissions": [
"android.permission.ACCESS_COARSE_LOCATION",
"android.permission.ACCESS_FINE_LOCATION",
"android.permission.FOREGROUND_SERVICE",
"android.permission.POST_NOTIFICATIONS",
"com.google.android.gms.permission.AD_ID"
],
"package": "com.nanaeats.nana_app",
"googleServicesFile": "./google-services.json",
"config": {
"googleMaps": {
"apiKey": "AIzaSyA4FLTREZvoZ6HQrfoNXm1bgWJksyvLLo4"
}
},
"intentFilters": [
{
"action": "VIEW",
"autoVerify": true,
"data": [
{
"scheme": "https",
"host": "trynanaapp.com",
"pathPrefix": "/"
}
],
"category": [
"BROWSABLE",
"DEFAULT"
]
}
]
},
"web": {
"favicon": "./assets/app-config/favicon.png"
},
"extra": {
"oneSignalAppId": "639c55ed-b3da-4238-b6c4-d01f5872f406",
"eas": {
"projectId": "8235481d-016d-4aa1-a436-7cc06ccc1f14"
}
},
"runtimeVersion": {
"policy": "appVersion"
}
}
}