-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.config.ts
52 lines (50 loc) · 1.23 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
48
49
50
51
52
import type { ExpoConfig } from '@expo/config';
const config: ExpoConfig = {
name: 'Guess-a-MON',
slug: 'guess-a-mon',
version: '1.0.0',
orientation: 'portrait',
icon: './src/assets/images/icon.png',
scheme: 'guessamon',
userInterfaceStyle: 'automatic',
ios: {
supportsTablet: true,
bundleIdentifier: 'com.kabanks.guess-a-mon',
splash: {
image: './src/assets/images/splash_light.png',
resizeMode: 'contain',
backgroundColor: '#ffffff',
dark: {
image: './src/assets/images/splash_dark.png',
resizeMode: 'contain',
backgroundColor: '#000000',
},
},
},
android: {
adaptiveIcon: {
foregroundImage: './src/assets/images/icon.png',
backgroundColor: '#ffffff',
},
splash: {
image: './src/assets/images/splash_light.png',
resizeMode: 'contain',
backgroundColor: '#ffffff',
dark: {
image: './src/assets/images/splash_dark.png',
resizeMode: 'contain',
backgroundColor: '#000000',
},
},
},
web: {
bundler: 'metro',
output: 'server',
favicon: './src/assets/images/favicon.png',
},
plugins: ['expo-router'],
experiments: {
typedRoutes: true,
},
};
export default config;