-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.config.ts
More file actions
87 lines (86 loc) · 2.21 KB
/
Copy pathapp.config.ts
File metadata and controls
87 lines (86 loc) · 2.21 KB
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
85
86
87
import { version } from "./package.json";
export default {
expo: {
name: "이어서",
slug: "earseo",
version: version,
orientation: "portrait",
icon: "./src/assets/images/earseo-icon.png",
scheme: "earseo",
userInterfaceStyle: "automatic",
newArchEnabled: true,
updates: {
url: "https://u.expo.dev/51f8ef22-b7f8-40ed-92d1-201c776e3b87",
},
runtimeVersion: {
policy: "appVersion",
},
extra: {
APP_ENV_API_BASE_URL: process.env.APP_ENV_API_BASE_URL,
APP_ENV_GEOFENCE_RADIUS: process.env.APP_ENV_GEOFENCE_RADIUS || "100",
eas: {
projectId: "51f8ef22-b7f8-40ed-92d1-201c776e3b87",
},
},
ios: {
bundleIdentifier: "com.earseo.earseo",
supportsTablet: true,
appleTeamId: "W39CU54NKB",
usesAppleSignIn: true,
infoPlist: {
UIBackgroundModes: ["audio", "location"],
},
config: {
usesNonExemptEncryption: false,
},
icon: "./src/assets/earseo-ios.icon",
displayName: "이어서",
},
android: {
package: "com.earseo.earseo",
adaptiveIcon: {
backgroundColor: "#E6F4FE",
foregroundImage: "./src/assets/images/earseo-icon.png",
backgroundImage: "./src/assets/images/earseo-icon.png",
monochromeImage: "./src/assets/images/earseo-icon.png",
},
edgeToEdgeEnabled: true,
predictiveBackGestureEnabled: false,
label: "이어서",
},
web: {
output: "static",
favicon: "./src/assets/images/earseo-icon.png",
},
plugins: [
"react-native-maps",
"expo-web-browser",
"expo-secure-store",
"expo-router",
"expo-apple-authentication",
[
"expo-splash-screen",
{
image: "./src/assets/images/earseo-transparent-icon.png",
imageWidth: 200,
resizeMode: "contain",
dark: {
backgroundColor: "#1e2127",
},
},
],
[
"expo-location",
{
isIosBackgroundLocationEnabled: true,
isAndroidBackgroundLocationEnabled: true,
},
],
"expo-font",
],
experiments: {
typedRoutes: true,
reactCompiler: true,
},
},
};