-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.config.js
More file actions
57 lines (48 loc) · 1.26 KB
/
Copy pathapp.config.js
File metadata and controls
57 lines (48 loc) · 1.26 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
export default ({ config }) => {
const storybookEnabled = process.env.EXPO_PUBLIC_STORYBOOK_ENABLED === 'true';
return {
...config,
name: 'Something sampler',
slug: 'something-sampler',
scheme: 'something-sampler',
version: '1.0.0',
orientation: 'portrait',
userInterfaceStyle: 'light',
newArchEnabled: true,
icon: './assets/icon.png',
splash: {
image: './assets/splash-icon.png',
resizeMode: 'contain',
backgroundColor: '#ffffff',
},
ios: {
bundleIdentifier: 'com.cse.app',
supportsTablet: true,
},
android: {
package: 'com.cse.app',
edgeToEdgeEnabled: true,
predictiveBackGestureEnabled: false,
adaptiveIcon: {
foregroundImage: './assets/adaptive-icon.png',
backgroundColor: '#ffffff',
},
},
web: {
favicon: './assets/favicon.png',
},
extra: {
...(config.extra ?? {}),
eas: {
...(config.extra?.eas ?? {}),
projectId: '8980c975-43e3-4f66-a063-ac3a87a392ce',
},
},
plugins: [
['expo-router', storybookEnabled ? { root: './src/storybook-app' } : {}],
'expo-localization',
'@react-native-community/datetimepicker',
'react-native-audio-api',
],
};
};