-
Notifications
You must be signed in to change notification settings - Fork 13
/
app.config.json
92 lines (92 loc) · 3.06 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
{
"expo": {
"name": "Neuland Next",
"slug": "neuland-app-native",
"scheme": "neuland",
"owner": "neuland-ingolstadt",
"version": "0.10.0",
"githubUrl": "https://github.com/neuland-ingolstadt/neuland.app-native/",
"userInterfaceStyle": "automatic",
"ios": {
"bundleIdentifier": "de.neuland-ingolstadt.neuland-app",
"buildNumber": "136",
"supportsTablet": true,
"userInterfaceStyle": "automatic",
"associatedDomains": [
"webcredentials:neuland.app",
"activitycontinuation:neuland.app"
],
"config": {
"usesNonExemptEncryption": false
},
"infoPlist": {
"RCTAsyncStorageExcludeFromBackup": false,
"CFBundleAllowMixedLocalizations": true,
"CFBundleDevelopmentRegion": "en",
"UIViewControllerBasedStatusBarAppearance": true,
"NSLocationWhenInUseUsageDescription": "Allow Neuland Next to access your location to show your location on the map."
},
"splash": {
"image": "./src/assets/splash/splashLight.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff",
"dark": {
"image": "./src/assets/splash/splashDark.png",
"backgroundColor": "#000000"
}
},
"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": 186,
"splash": {
"image": "./src/assets/splash/splashLight.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff",
"dark": {
"backgroundColor": "#000000",
"image": "./src/assets/splash/splashDark.png"
}
}
},
"sdkVersion": "51.0.0",
"experiments": {
"tsconfigPaths": true
},
"plugins": [
[
"expo-router",
{
"headOrigin": "https://neuland.app"
}
],
["expo-secure-store"],
["expo-localization"],
[
"expo-local-authentication",
{
"faceIDPermission": "Allow $(PRODUCT_NAME) to use Face ID."
}
],
["@maplibre/maplibre-react-native"],
["expo-build-properties"],
[
"expo-screen-orientation",
{
"initialOrientation": "DEFAULT"
}
]
],
"extra": {
"eas": {
"projectId": "b0ef9e3f-3115-44b0-abc7-99dd75821353"
}
}
}
}