-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.config.ts
70 lines (69 loc) · 1.74 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
import { ExpoConfig, ConfigContext } from "expo/config";
export default ({ config }: ConfigContext): ExpoConfig => ({
...config,
name: "Back On Track",
slug: "bot-app",
version: "1.0.5",
orientation: "portrait",
icon: "./src/assets/icon.png",
userInterfaceStyle: "automatic",
splash: {
image: "./src/assets/splash.png",
resizeMode: "contain",
backgroundColor: "#ffffff",
},
assetBundlePatterns: ["**/*"],
ios: {
supportsTablet: true,
bundleIdentifier: "org.backontrackus.app",
infoPlist: {
NSCalendarsUsageDescription:
"This app requires access to your calendar to add events from your location's announcements.",
},
},
android: {
adaptiveIcon: {
foregroundImage: "./src/assets/adaptive-icon.png",
backgroundColor: "#ffffff",
},
package: "org.backontrackus.app",
googleServicesFile: "./google-services.json",
},
web: {
favicon: "./src/assets/favicon.png",
},
plugins: [
[
"@sentry/react-native/expo",
{
organization: process.env.SENTRY_ORG,
project: process.env.SENTRY_PROJECT,
},
],
[
"expo-font",
{
fonts: [
"node_modules/@expo-google-fonts/oswald/Oswald_400Regular.ttf",
"node_modules/@expo-google-fonts/oswald/Oswald_600SemiBold.ttf",
"node_modules/@expo-google-fonts/inter/Inter_400Regular.ttf",
"node_modules/@expo-google-fonts/inter/Inter_700Bold.ttf",
],
},
],
[
"expo-build-properties",
{
android: {
// Network inspector breaks react-native-sse
networkInspector: false,
},
},
],
],
extra: {
eas: {
projectId: "a3af5358-9a31-49de-83c4-38cfc632784b",
},
},
});