-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.config.js
64 lines (63 loc) · 1.47 KB
/
app.config.js
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
const packageJson = require('./package.json');
export default {
expo: {
name: packageJson.name,
slug: packageJson.name,
version: packageJson.version,
scheme: packageJson.name,
newArchEnabled: true,
plugins: [
'expo-router',
'expo-asset',
[
'expo-splash-screen',
{
backgroundColor: '#6aa563',
image: './assets/images/icon.png',
imageWidth: 100,
},
],
],
experiments: {
typedRoutes: true,
tsconfigPaths: true,
},
orientation: 'portrait',
icon: './assets/images/icon.png',
userInterfaceStyle: 'light',
splash: {
image: './assets/images/splash.png',
},
assetBundlePatterns: ['**/*'],
ios: {
icon: {
light: './assets/images/icon.png',
dark: './assets/images/icon.png',
tinted: './assets/images/icon.png',
},
supportsTablet: true,
bundleIdentifier: 'com.amwebexpert.pocarchiverexpo',
},
android: {
adaptiveIcon: {
foregroundImage: './assets/images/adaptive-icon.png',
backgroundColor: '#6aa563',
},
package: 'com.amwebexpert.pocarchiverexpo',
},
extra: {
router: {
origin: false,
},
eas: {
projectId: '62af709a-d2e6-4cf9-9aaa-57126baef3bd',
},
},
runtimeVersion: {
policy: 'appVersion',
},
updates: {
url: 'https://u.expo.dev/62af709a-d2e6-4cf9-9aaa-57126baef3bd',
},
},
};