-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.config.ts
72 lines (70 loc) · 1.88 KB
/
app.config.ts
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
import { ExpoConfig } from "expo/config";
import { PluginConfigType } from "expo-build-properties/src/pluginConfig";
const config = (): ExpoConfig => ({
name: "Guider",
slug: "guider",
version: "0.0.1",
description: "Offline Access to Emergency Guides",
owner: "codewithshreyans",
githubUrl: "https://github.com/CodeWithShreyans/guider",
orientation: "portrait",
icon: "./assets/images/icons/tinted.png",
scheme: "guider",
userInterfaceStyle: "automatic",
platforms: ["ios", "android"],
splash: {
image: "./assets/images/icons/tinted.png",
backgroundColor: "#000000",
},
ios: {
supportsTablet: true,
bundleIdentifier: "sh.shreyans.guider",
entitlements: {
"aps-environment": "development",
},
icon: {
any: "./assets/images/icons/light.png",
dark: "./assets/images/icons/dark.png",
tinted: "./assets/images/icons/tinted.png",
},
},
android: {
package: "sh.shreyans.guider",
},
plugins: [
"expo-router",
"react-native-edge-to-edge",
[
"expo-build-properties",
{
ios: {
newArchEnabled: true,
},
android: {
newArchEnabled: true,
minSdkVersion: 28,
},
} as PluginConfigType,
],
],
experiments: {
typedRoutes: true,
turboModules: true,
reactCompiler: true,
},
extra: {
router: {
origin: false,
},
eas: {
projectId: "73754ac9-a30d-48ae-9127-c179690b1fdf",
},
},
runtimeVersion: {
policy: "appVersion",
},
updates: {
url: "https://u.expo.dev/73754ac9-a30d-48ae-9127-c179690b1fdf",
},
});
export default config;