Skip to content

Commit

Permalink
new animations and design, map search history
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert27 committed Aug 9, 2024
1 parent e8441a0 commit d313524
Show file tree
Hide file tree
Showing 176 changed files with 6,177 additions and 6,759 deletions.
1 change: 0 additions & 1 deletion .env

This file was deleted.

6 changes: 4 additions & 2 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"tsconfigRootDir": "./",
"noUnusedLocals": true
},
"plugins": ["react", "react-native"],
"plugins": ["react", "react-native", "i18next", "react-hooks"],
"settings": {
"react": {
"version": "detect"
Expand All @@ -28,7 +28,9 @@
"react-native/no-inline-styles": 2,
"react-native/no-color-literals": 2,
"react-native/no-raw-text": 2,
"react-native/no-single-element-style-arrays": 2
"react-native/no-single-element-style-arrays": 2,
"i18next/no-literal-string": 2,
"react-hooks/rules-of-hooks": "error"
},
"ignorePatterns": ["metro.config.js"]
}
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
.DS_Store

# vs code
.vscode/
.VSCodeCounter/

# bun
Expand Down
7 changes: 7 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"recommendations": [
"lokalise.i18n-ally",
"esbenp.prettier-vscode",
"eslint.vscode-eslint"
]
}
16 changes: 16 additions & 0 deletions .vscode/launch.json
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"
}
]
}
17 changes: 17 additions & 0 deletions .vscode/settings.json
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
}
6 changes: 2 additions & 4 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,6 @@ def enableProguardInReleaseBuilds = (findProperty('android.enableProguardInRelea
*/
def jscFlavor = 'org.webkit:android-jsc:+'

apply from: new File(["node", "--print", "require('path').dirname(require.resolve('@sentry/react-native/package.json'))"].execute().text.trim(), "sentry.gradle")

android {
ndkVersion rootProject.ext.ndkVersion

Expand All @@ -90,8 +88,8 @@ android {
applicationId 'app.neuland'
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 101
versionName "0.8.2"
versionCode 114
versionName "0.8.3"
}
signingConfigs {
debug {
Expand Down
1 change: 0 additions & 1 deletion android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.SCHEDULE_EXACT_ALARM"/>
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/>
<uses-permission android:name="android.permission.USE_BIOMETRIC"/>
<uses-permission android:name="android.permission.USE_FINGERPRINT"/>
Expand Down
4 changes: 0 additions & 4 deletions android/sentry.properties

This file was deleted.

83 changes: 83 additions & 0 deletions app.config.json
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"
}
}
}
}
99 changes: 0 additions & 99 deletions app.config.ts

This file was deleted.

Binary file modified bun.lockb
Binary file not shown.
Loading

0 comments on commit d313524

Please sign in to comment.