-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathapp.config.ts
71 lines (69 loc) · 1.41 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
import { ExpoConfig } from 'expo/config';
const config: ExpoConfig = {
name: 'expo-base',
slug: 'expo-base',
version: '1.0.0',
orientation: 'portrait',
icon: './src/assets/images/icon.png',
scheme: 'expo-base',
userInterfaceStyle: 'automatic',
newArchEnabled: true,
splash: {
image: './src/assets/images/splash.png',
resizeMode: 'contain',
},
assetBundlePatterns: ['**/*'],
extra: {
eas: {
projectId: '61107862-a218-4135-bc3d-159d054eff83',
},
},
ios: {
supportsTablet: true,
bundleIdentifier: 'com.sabuhiteymurov.expobase',
},
android: {
versionCode: 1,
adaptiveIcon: {
foregroundImage: './src/assets/images/adaptive-icon.png',
backgroundColor: '#ffffff',
},
package: 'com.sabuhiteymurov.expobase',
},
web: {
bundler: 'metro',
favicon: './src/assets/images/favicon.png',
},
plugins: [
'expo-font',
'expo-router',
'expo-localization',
'expo-secure-store',
'react-native-bottom-tabs',
[
'expo-build-properties',
{
ios: {
useFrameworks: 'static',
newArchEnabled: true,
},
android: {
newArchEnabled: true,
},
},
],
[
'@config-plugins/detox',
{
subdomains: '*',
},
],
],
experiments: {
tsconfigPaths: true,
},
runtimeVersion: {
policy: 'appVersion',
},
};
export default config;