-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
76 lines (76 loc) · 1.61 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
{
"expo": {
"name": "FKart",
"slug": "FKart",
"version": "24.9.8",
"orientation": "portrait",
"scheme": "fkart",
"userInterfaceStyle": "automatic",
"icon": "./src/assets/media/images/icon_full_white.png",
"splash": {
"image": "./src/assets/media/images/icon_no_bg.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"assetBundlePatterns": ["**/*"],
"android": {
"enableProguardInReleaseBuilds":true,
"useLegacyPackaging":true,
"adaptiveIcon": {
"foregroundImage": "./src/assets/media/images/icon_full_white.png",
"backgroundColor": "#ffffff"
},
"package": "dev.phasenull.FKart",
"runtimeVersion": "24.9.8",
"config": {
"googleMaps": {
"apiKey": "AIzaSyDEi26R3XBBCxx9enfbo7H-dD4uNwmtIZ0"
}
},
"permissions": ["android.permission.ACCESS_COARSE_LOCATION", "android.permission.ACCESS_FINE_LOCATION"]
},
"plugins": [
"expo-router",
[
"expo-image-picker",
{
"photosPermission": "Required to upload bus images."
}
],
[
"expo-build-properties",
{
"android": {
"useLegacyPackaging":true,
"enableProguardInReleaseBuilds": true
}
}
],
[
"expo-location",
{
"locationAlwaysAndWhenInUsePermission": "To see your location on maps"
}
]
],
"extra": {
"router": {
"origin": false
},
"eas": {
"projectId": "33376c1e-302f-42f0-88ec-b0fccb210c19"
}
},
"updates": {
"url": "https://u.expo.dev/33376c1e-302f-42f0-88ec-b0fccb210c19"
},
"ios": {
"runtimeVersion": {
"policy": "appVersion"
}
},
"experiments": {
"typedRoutes": true
}
}
}