-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.config.ts
47 lines (47 loc) · 1.13 KB
/
app.config.ts
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
module.exports = {
expo: {
name: process.env.APP_NAME || 'foods-with-histamine',
slug: 'foods-with-histamine',
version: '1.0.1',
orientation: 'portrait',
icon: process.env.APP_ICON || './assets/images/icon.png',
scheme: 'myapp',
userInterfaceStyle: 'automatic',
splash: {
image: './assets/images/histamineSplash.png',
resizeMode: 'contain',
backgroundColor: '#ffffff',
},
assetBundlePatterns: ['**/*'],
ios: {
supportsTablet: true,
bundleIdentifier: 'devMars.foodsWithHistamine',
},
android: {
adaptiveIcon: {
foregroundImage: './assets/icons/ic_launcher.png',
backgroundColor: '#ffffff',
},
},
web: {
bundler: 'metro',
output: 'static',
favicon: './assets/icons/favicon.ico',
},
plugins: ['expo-router'],
experiments: {
typedRoutes: true,
},
extra: {
eas: {
projectId: '70d8c631-0855-4236-9fd3-b3ecb6ceaf45',
},
},
updates: {
url: 'https://u.expo.dev/70d8c631-0855-4236-9fd3-b3ecb6ceaf45',
},
runtimeVersion: {
policy: 'appVersion',
},
},
};