-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.config.ts
61 lines (60 loc) · 1.43 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
import type { ExpoConfig, ConfigContext } from "expo/config";
export default ({ config }: ConfigContext): ExpoConfig => ({
...config,
name: "melocap",
slug: "melocap",
version: "1.0.0",
orientation: "portrait",
icon: "./assets/icon.png",
userInterfaceStyle: "automatic",
splash: {
image: "./assets/splash.png",
resizeMode: "contain",
backgroundColor: "#ffffff",
},
scheme: "melocap",
ios: {
supportsTablet: true,
bundleIdentifier: "com.alexlevy0.melocap",
},
android: {
adaptiveIcon: {
foregroundImage: "./assets/adaptive-icon.png",
backgroundColor: "#ffffff",
},
package: "com.alexlevy0.melocap",
},
web: {
favicon: "./assets/favicon.png",
},
plugins: [
"expo-font",
// @ts-ignore : Property 'EXPO_PUBLIC_EXPO_ROUTER_ORIGIN' does not exist on type 'typeof env'
["expo-router", { origin: process.env.EXPO_PUBLIC_EXPO_ROUTER_ORIGIN || '' }],
"expo-splash-screen",
[
"@sentry/react-native/expo",
{
// @ts-expect-error 'typeof env'
"organization": process.env.EXPO_PUBLIC_SENTRY_ORG,
// @ts-expect-error 'typeof env'
"project": process.env.EXPO_PUBLIC_SENTRY_PROJECT,
"url": "https://sentry.io/"
}
],
[
"expo-local-authentication",
{
"faceIDPermission": "Allow $(PRODUCT_NAME) to use Face ID."
}
],
],
extra: {
"eas": {
"projectId": "be5ba0c1-5452-4aca-b6a5-fa9dbbf1ca16"
},
},
notification: {
// vapidPublicKey : "TODO",
}
});