-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
110 lines (110 loc) · 2.88 KB
/
app.json
File metadata and controls
110 lines (110 loc) · 2.88 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"expo": {
"name": "FindIt",
"slug": "client-app",
"version": "1.18.0",
"orientation": "portrait",
"icon": "./assets/images/logos/ios-light.png",
"scheme": "findit",
"userInterfaceStyle": "automatic",
"newArchEnabled": true,
"ios": {
"supportsTablet": true,
"bundleIdentifier": "pt.findit.clientapp",
"icon": {
"dark": "./assets/images/logos/ios-dark.png",
"light": "./assets/images/logos/ios-light.png",
"tinted": "./assets/images/logos/ios-tinted.png"
},
"googleServicesFile": "./GoogleService-Info.plist"
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/images/logos/android-adaptive-icon.png",
"monochromeImage": "./assets/images/logos/android-tinted-icon.png"
},
"permissions": [
"ACCESS_BACKGROUND_LOCATION",
"ACCESS_COARSE_LOCATION",
"ACCESS_FINE_LOCATION",
"BLUETOOTH_SCAN",
"BLUETOOTH_CONNECT",
"BLUETOOTH_ADVERTISE"
],
"package": "pt.findit.clientapp"
},
"web": {
"bundler": "metro",
"output": "static",
"favicon": "./assets/images/logos/favicon.png"
},
"plugins": [
"expo-router",
[
"expo-splash-screen",
{
"backgroundColor": "#ffffff",
"image": "./assets/images/logos/splash-icon-light.png",
"dark": {
"backgroundColor": "#000000",
"image": "./assets/images/logos/splash-icon-dark.png"
},
"imageWidth": 200,
"resizeMode": "contain"
}
],
"react-native-edge-to-edge",
"expo-secure-store",
"expo-speech-recognition",
"@maplibre/maplibre-react-native",
[
"expo-location",
{
"locationAlwaysAndWhenInUsePermission": "Allow $(PRODUCT_NAME) to use your location."
}
],
"@maplibre/maplibre-react-native",
[
"@react-native-google-signin/google-signin",
{
"iosUrlScheme": "com.googleusercontent.apps.742231570327-s21pt82lc97lc35obefgn5nrdq4m0rn6"
}
],
[
"react-native-permissions",
{
"iosPermissions": [
"BluetoothAlways",
"BluetoothPeripheral",
"LocationAlwaysAndWhenInUse",
"LocationWhenInUse"
]
}
],
[
"expo-sensors",
{
"motionPermission": "Allow $(PRODUCT_NAME) to access your device motion"
}
]
],
"experiments": {
"typedRoutes": true,
"reactCompiler": true
},
"extra": {
"router": {
"origin": false
},
"eas": {
"projectId": "0bab4576-b4ae-4290-9835-f6e61e1b2bf8"
}
},
"runtimeVersion": {
"policy": "appVersion"
},
"updates": {
"url": "https://u.expo.dev/0bab4576-b4ae-4290-9835-f6e61e1b2bf8"
}
}
}