-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.config.ts
More file actions
71 lines (70 loc) · 1.57 KB
/
app.config.ts
File metadata and controls
71 lines (70 loc) · 1.57 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
import { ConfigContext, ExpoConfig } from "expo/config";
export default ({ config }: ConfigContext): ExpoConfig => ({
...config,
name: "Glow",
slug: "Glow",
scheme: "glow",
owner: "glowhealth",
version: "0.1.0",
orientation: "portrait",
icon: "./assets/icon.png",
userInterfaceStyle: "light",
splash: {
image: "./assets/splash.png",
resizeMode: "contain",
backgroundColor: "#ffffff",
},
ios: {
supportsTablet: true,
bundleIdentifier: "com.glowhealth.companion",
usesAppleSignIn: true,
infoPlist: {
UIBackgroundModes: ["audio", "fetch", "voip"],
},
},
android: {
adaptiveIcon: {
foregroundImage: "./assets/adaptive-icon.png",
backgroundColor: "#ffffff",
},
package: "com.glowhealth.companion",
},
web: {
favicon: "./assets/favicon.png",
bundler: "metro",
output: "server",
},
plugins: [
[
"expo-dev-launcher",
{
launchMode: "most-recent",
},
],
[
"@react-native-google-signin/google-signin",
{
iosUrlScheme:
"com.googleusercontent.apps.118244602240-hj3ukvu2rn64cvnop7of44b0psuackki",
},
],
[
"@sentry/react-native/expo",
{
url: "https://sentry.io/",
project: "javascript-nextjs",
organization: "glow-7f",
},
],
"expo-router",
"@livekit/react-native-expo-plugin",
"@config-plugins/react-native-webrtc",
"expo-apple-authentication",
"expo-audio",
],
extra: {
eas: {
projectId: "313b0e1d-611b-4f97-b2cb-a2ffdaa0cfd2",
},
},
});