-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.config.ts
More file actions
53 lines (47 loc) · 1.21 KB
/
app.config.ts
File metadata and controls
53 lines (47 loc) · 1.21 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
import { EASConfig, ExpoConfig } from '@expo/config';
const createConfig = (): Omit<ExpoConfig, 'extra'> & { extra: { eas: EASConfig } & typeof extra } => {
const projectId = 'cfb19077-7f21-495f-97ff-36b85f7c6c84';
const appId = 'com.open.web.ui.dev';
const extra = {
eas: { projectId } as EASConfig,
};
return {
name: 'Test React Navigation',
slug: 'test-react-navigation',
scheme: 'test-react-navigation',
version: '0.3.0',
orientation: 'portrait',
icon: "./assets/images/icon.png",
splash: {
image: "./assets/images/splash-icon.png",
resizeMode: "contain",
backgroundColor: "#ffffff"
},
runtimeVersion: '1.0.0',
updates: {
url: `https://u.expo.dev/${projectId}`,
},
ios: {
bundleIdentifier: appId,
supportsTablet: false,
buildNumber: '1',
config: {
usesNonExemptEncryption: false,
},
},
android: {
package: appId,
versionCode: 1,
adaptiveIcon: {
foregroundImage: "./assets/images/adaptive-icon.png",
backgroundColor: "#ffffff"
},
},
web: {
bundler: 'metro',
},
newArchEnabled: true,
extra,
};
};
export default createConfig;