-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.config.ts
66 lines (63 loc) · 1.62 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
import { ExpoConfig } from "expo/config";
const isProduction = process.env.EAS_BUILD_PROFILE === "production";
const config: ExpoConfig = {
name: "Word Check",
slug: "word-check",
scheme: "wordcheck",
newArchEnabled: true,
platforms: ["ios", "android", "web"],
version: "2024.52.1",
orientation: "default",
userInterfaceStyle: "automatic",
icon: isProduction
? "./assets/images/icon.png"
: "./assets/images/icon-dev.png",
updates: {
url: "https://u.expo.dev/dd591e49-d2d1-4ce0-bef9-49746a819ec0",
},
ios: {
bundleIdentifier: `jonsamp.words${isProduction ? "" : "-dev"}`,
supportsTablet: true,
},
android: {
package: `com.jonsamp.wordcheck${isProduction ? "" : "-dev"}`,
permissions: [],
icon: isProduction
? "./assets/images/icon.png"
: "./assets/images/icon-dev.png",
adaptiveIcon: {
foregroundImage: isProduction
? "./assets/images/adaptive-foreground.png"
: "./assets/images/adaptive-foreground-dev.png",
backgroundImage: "./assets/images/adaptive-background.png",
},
},
runtimeVersion: {
policy: "appVersion",
},
extra: {
eas: {
projectId: "dd591e49-d2d1-4ce0-bef9-49746a819ec0",
},
},
plugins: [
"expo-font",
"expo-asset",
"expo-router",
"expo-sqlite",
[
"expo-splash-screen",
{
backgroundColor: "#EAE6DB",
image: "./assets/images/icon-splash.png",
dark: {
backgroundColor: "#1c1917",
image: "./assets/images/icon-splash-dark.png",
},
imageWidth: 150,
},
],
],
owner: "jonsamp",
};
export default config;