generated from bratislava/expo-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.config.js
71 lines (71 loc) · 1.63 KB
/
app.config.js
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
module.exports = {
expo: {
name: 'Skenovacia aplikácia',
slug: 'enforcement-scan-app',
scheme: 'enforcement-scan-app',
version: '1.2.2',
orientation: 'portrait',
icon: './assets/icon.png',
userInterfaceStyle: 'light',
splash: {
image: './assets/splash.png',
resizeMode: 'contain',
backgroundColor: '#16254C',
},
assetBundlePatterns: ['**/*'],
android: {
package: process.env.EXPO_PUBLIC_ANDROID_PACKAGE_NAME || 'com.bratislava.enforcement',
adaptiveIcon: {
foregroundImage: './assets/icon.png',
backgroundColor: '#ffffff',
},
},
experiments: {
tsconfigPaths: true,
},
plugins: [
'expo-router',
'expo-font',
'react-native-vision-camera',
[
'@rnmapbox/maps',
{
RNMapboxMapsImpl: 'mapbox',
RNMapboxMapsDownloadToken: process.env.MAPBOX_SECRET_TOKEN,
},
],
[
'expo-updates',
{
username: 'bratislava',
},
],
[
'expo-location',
{
locationWhenInUsePermission: 'Show current location on map.',
},
],
[
'@sentry/react-native/expo',
{
organization: 'bratislava-city-hall',
project: 'enforcement-scan-app',
url: 'https://sentry.io/',
},
],
],
extra: {
eas: {
projectId: '28f73650-074c-4565-94ac-c5cbe5b9658f',
},
},
updates: {
url: 'https://u.expo.dev/28f73650-074c-4565-94ac-c5cbe5b9658f',
},
runtimeVersion: {
policy: 'appVersion',
},
owner: 'bratislava',
},
}