-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.config.ts
More file actions
36 lines (35 loc) · 896 Bytes
/
app.config.ts
File metadata and controls
36 lines (35 loc) · 896 Bytes
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
import { ConfigContext, ExpoConfig } from 'expo/config';
export default ({ config }: ConfigContext): ExpoConfig => {
return {
...config,
name: "mobile-pinely-template",
slug: "mobile-pinely-template",
version: "1.0.0",
jsEngine: 'hermes',
orientation: 'portrait',
icon: './assets/icon.png',
userInterfaceStyle: 'light',
newArchEnabled: true,
owner: 'pinely',
scheme: 'mobile-pinely-template',
splash: {
backgroundColor: '#020202',
image: "./assets/splash-icon.png",
resizeMode: "contain",
},
ios: {
supportsTablet: true,
bundleIdentifier: "com.rn-frontend.mobile"
},
android: {
adaptiveIcon: {
foregroundImage: "./assets/adaptive-icon.png",
backgroundColor: "#ffffff"
},
edgeToEdgeEnabled: true
},
web: {
favicon: "./assets/favicon.png"
},
};
};