-
Notifications
You must be signed in to change notification settings - Fork 15
/
app.config.json
116 lines (116 loc) · 3.92 KB
/
app.config.json
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"expo": {
"name": "Neuland Next",
"slug": "neuland-app-native",
"scheme": "neuland",
"owner": "neuland-ingolstadt",
"version": "0.11.1",
"githubUrl": "https://github.com/neuland-ingolstadt/neuland.app-native/",
"userInterfaceStyle": "automatic",
"newArchEnabled": false,
"ios": {
"bundleIdentifier": "de.neuland-ingolstadt.neuland-app",
"buildNumber": "199",
"supportsTablet": true,
"userInterfaceStyle": "automatic",
"associatedDomains": [
"webcredentials:neuland.app",
"activitycontinuation:neuland.app"
],
"config": {
"usesNonExemptEncryption": false
},
"infoPlist": {
"RCTAsyncStorageExcludeFromBackup": false,
"CFBundleAllowMixedLocalizations": true,
"CFBundleDevelopmentRegion": "en",
"UIViewControllerBasedStatusBarAppearance": false,
"NSLocationWhenInUseUsageDescription": "Allow Neuland Next to access your location to show your location on the map."
},
"icon": "./src/assets/appIcons/default.png"
},
"locales": {
"en": "./src/localization/en/ios.json",
"de": "./src/localization/de/ios.json"
},
"android": {
"package": "app.neuland",
"userInterfaceStyle": "automatic",
"versionCode": 274
},
"sdkVersion": "52.0.0",
"experiments": {
"tsconfigPaths": true,
"typedRoutes": true
},
"plugins": [
[
"react-native-edge-to-edge",
{
"android": {
"parentTheme": "Material3"
}
}
],
"react-native-bottom-tabs",
[
"expo-router",
{
"headOrigin": "https://neuland.app"
}
],
["expo-alternate-app-icons"],
["expo-secure-store"],
["expo-localization"],
[
"expo-local-authentication",
{
"faceIDPermission": "Allow $(PRODUCT_NAME) to use Face ID."
}
],
["@maplibre/maplibre-react-native"],
[
"expo-build-properties",
{
"ios": {
"deploymentTarget": "15.1",
"useFrameworks": "static"
}
}
],
[
"expo-screen-orientation",
{
"initialOrientation": "DEFAULT"
}
],
[
"expo-splash-screen",
{
"backgroundColor": "#ffffff",
"image": "./src/assets/splash/splashIconDark.png",
"dark": {
"image": "./src/assets/splash/splashIconLight.png",
"backgroundColor": "#000000"
},
"imageWidth": 200
}
],
"react-native-edge-to-edge",
"expo-alternate-app-icons"
],
"extra": {
"eas": {
"projectId": "b0ef9e3f-3115-44b0-abc7-99dd75821353"
}
},
"web": {
"favicon": "./src/assets/web/favicon.png",
"shortName": "Neuland Next",
"name": "Neuland Next - Deine inoffizielle App für die THI",
"description": "Neuland Next ist eine inoffizielle App für die Technische Hochschule Ingolstadt. Sie bietet dir alle Funktionen, die du für dein Studium benötigst, an einem Ort.",
"lang": "de",
"preferRelatedApplications": true
}
}
}