-
Notifications
You must be signed in to change notification settings - Fork 19
/
app.config.js
84 lines (84 loc) · 1.85 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
module.exports = {
expo: {
name: 'expo-router-starter-kit-(expo-go)',
owner: "ritmillio",
experiments: {
typedRoutes: true,
tsconfigPaths: true,
},
slug: 'expo-router-starter-kit',
version: '1.0.0',
orientation: 'portrait',
icon: './public/favicon.png',
scheme: 'acme',
userInterfaceStyle: 'automatic',
splash: {
image: './public/splash.png',
resizeMode: 'contain',
backgroundColor: '#fff',
},
updates: {
fallbackToCacheTimeout: 0,
url: "https://u.expo.dev/564f22dd-cb02-43e7-b4a9-d0f7c49ea2ef"
},
mode: 'production',
assetBundlePatterns: ['**/*'],
build: {
development: {
distribution: "internal"
},
preview: {
distribution: "internal"
},
production: {
distribution: "store"
}
},
ios: {
supportsTablet: true,
bundleIdentifier: 'com.your.bundle.identifier'
},
infoPlist: {
ITSAppUsesNonExemptEncryption: false,
},
android: {
package: 'com.your.bundle.identifier',
adaptiveIcon: {
foregroundImage: './public/adaptive-icon.png',
backgroundColor: '#ffffff',
},
// Add your custom intent filters here for Deep Linking
intentFilters: [
{
action: 'VIEW',
autoVerify: true,
data: [
{
scheme: 'https',
host: '*.myapp.io',
pathPrefix: '/records',
},
],
category: ['BROWSABLE', 'DEFAULT'],
},
],
},
web: {
bundler: 'metro',
favicon: './public/favicon.png',
},
plugins: [
[
'expo-router',
]
],
runtimeVersion: {
policy: "appVersion"
},
extra: {
eas: {
projectId: "564f22dd-cb02-43e7-b4a9-d0f7c49ea2ef"
}
},
},
};