-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.config.ts
64 lines (64 loc) · 1.77 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
export default {
name: "Project Plants",
slug: "project-plants",
owner: "project-plants",
version: process.env.PROJECT_PLANTS_VERSION || 'dev',
orientation: "portrait",
icon: "./assets/icon.png",
splash: {
image: "./assets/splash.png",
resizeMode: "contain",
backgroundColor: "#ffffff"
},
userInterfaceStyle: "automatic",
updates: {
fallbackToCacheTimeout: 0,
url: "https://u.expo.dev/15b0de1d-5590-4800-af42-ff51aedc5852"
},
runtimeVersion: {
policy: "appVersion"
},
assetBundlePatterns: [
"**/*"
],
ios: {
supportsTablet: false,
bundleIdentifier: "app.growbuddy",
buildNumber: process.env.PROJECT_PLANTS_VERSION || '0.0.0',
infoPlist: {
"NSCameraUsageDescription": "Erlaube den Zugriff auf die Kamera um ein Foto deiner Pflanze zu schiessen.",
"NSPhotoLibraryUsageDescription": "Erlaube den Zugriff auf deine Fotos um ein Foto deiner Pflanze zu wählen."
}
},
android: {
adaptiveIcon: {
foregroundImage: "./assets/adaptive-icon.png",
backgroundColor: "#FFFFFF"
}
},
web: {
favicon: "./assets/favicon.png"
},
hooks: {
postPublish: [
{
file: "sentry-expo/upload-sourcemaps",
config: {
organization: "project-plants",
project: "project-plants",
authToken: process.env.SENTRY_TOKEN,
setCommits: true
}
}
]
},
plugins: [
"sentry-expo",
"expo-font"
],
extra: {
eas: {
projectId: "15b0de1d-5590-4800-af42-ff51aedc5852"
}
}
}