-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
new animations and design, map search history
- Loading branch information
Showing
176 changed files
with
6,177 additions
and
6,759 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,6 @@ | |
.DS_Store | ||
|
||
# vs code | ||
.vscode/ | ||
.VSCodeCounter/ | ||
|
||
# bun | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"recommendations": [ | ||
"lokalise.i18n-ally", | ||
"esbenp.prettier-vscode", | ||
"eslint.vscode-eslint" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"type": "expo", | ||
"request": "attach", | ||
"name": "Debug Expo app", | ||
"projectRoot": "${workspaceFolder}", | ||
"bundlerPort": "8082", | ||
"bundlerHost": "127.0.0.1" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"typescript.tsdk": "node_modules/typescript/lib", | ||
"editor.formatOnSave": true, | ||
"editor.codeActionsOnSave": { | ||
"source.fixAll.eslint": "explicit" | ||
}, | ||
"eslint.validate": [ | ||
"javascript", | ||
"javascriptreact", | ||
"typescript", | ||
"typescriptreact" | ||
], | ||
"i18n-ally.localesPaths": ["src/localization"], | ||
"i18n-ally.autoDetection": false, | ||
"i18n-ally.keystyle": "nested", | ||
"i18n-ally.namespace": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
{ | ||
"expo": { | ||
"name": "Neuland Next", | ||
"slug": "neuland-app-native", | ||
"scheme": "neuland", | ||
"owner": "neuland-ingolstadt", | ||
"version": "0.8.3", | ||
"githubUrl": "https://github.com/neuland-ingolstadt/neuland.app-native/", | ||
"orientation": "portrait", | ||
"userInterfaceStyle": "automatic", | ||
"ios": { | ||
"bundleIdentifier": "de.neuland-ingolstadt.neuland-app", | ||
"buildNumber": "71", | ||
"supportsTablet": true, | ||
"userInterfaceStyle": "automatic", | ||
"associatedDomains": [ | ||
"webcredentials:neuland.app", | ||
"activitycontinuation:neuland.app" | ||
], | ||
"config": { | ||
"usesNonExemptEncryption": false | ||
}, | ||
"infoPlist": { | ||
"RCTAsyncStorageExcludeFromBackup": false, | ||
"CFBundleAllowMixedLocalizations": true, | ||
"CFBundleLocalizations": ["en", "de"], | ||
"CFBundleDevelopmentRegion": "en", | ||
"UIViewControllerBasedStatusBarAppearance": true | ||
}, | ||
"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" | ||
}, | ||
"android": { | ||
"package": "app.neuland", | ||
"userInterfaceStyle": "automatic", | ||
"versionCode": 114, | ||
"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", | ||
{ | ||
"origin": "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" | ||
], | ||
"extra": { | ||
"eas": { | ||
"projectId": "b0ef9e3f-3115-44b0-abc7-99dd75821353" | ||
} | ||
} | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.