Update git rules with retry workaround

This commit is contained in:
2026-06-12 23:27:44 +02:00
parent 56eab4a89b
commit dd0876d977
5 changed files with 12 additions and 10 deletions
+1
View File
@@ -28,3 +28,4 @@ The exact naming syntax for compiled files is:
# Git & Workflow Rules # Git & Workflow Rules
- **Always Commit and Push:** At the end of every interaction or when tasks are completed, ALL changes must be automatically committed and pushed to Git (`git add .`, `git commit`, `git push`). - **Always Commit and Push:** At the end of every interaction or when tasks are completed, ALL changes must be automatically committed and pushed to Git (`git add .`, `git commit`, `git push`).
- **Push Retry Bug:** If `git push` fails with an authentication error, ALWAYS try running it a second time, as it usually succeeds on the retry.
+2 -2
View File
@@ -92,8 +92,8 @@ android {
applicationId 'de.orfel.schnappix' applicationId 'de.orfel.schnappix'
minSdkVersion rootProject.ext.minSdkVersion minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 3 versionCode 4
versionName "1.0.2" versionName "1.0.3"
buildConfigField "String", "REACT_NATIVE_RELEASE_LEVEL", "\"${findProperty('reactNativeReleaseLevel') ?: 'stable'}\"" buildConfigField "String", "REACT_NATIVE_RELEASE_LEVEL", "\"${findProperty('reactNativeReleaseLevel') ?: 'stable'}\""
} }
Binary file not shown.
+5 -7
View File
@@ -3,7 +3,7 @@
"newArchEnabled": true, "newArchEnabled": true,
"name": "Schnappix", "name": "Schnappix",
"slug": "Schnappix", "slug": "Schnappix",
"version": "1.0.2", "version": "1.0.3",
"orientation": "landscape", "orientation": "landscape",
"icon": "./Icon.png", "icon": "./Icon.png",
"userInterfaceStyle": "dark", "userInterfaceStyle": "dark",
@@ -13,22 +13,19 @@
}, },
"android": { "android": {
"package": "de.orfel.schnappix", "package": "de.orfel.schnappix",
"versionCode": 3, "versionCode": 4,
"adaptiveIcon": { "adaptiveIcon": {
"backgroundColor": "#050510", "backgroundColor": "#050510",
"foregroundImage": "./Icon-padded.png" "foregroundImage": "./Icon-padded.png"
}, },
"permissions": [ "permissions": [
"android.permission.CAMERA", "android.permission.CAMERA",
"android.permission.RECORD_AUDIO",
"android.permission.INTERNET", "android.permission.INTERNET",
"android.permission.ACCESS_NETWORK_STATE", "android.permission.ACCESS_NETWORK_STATE",
"android.permission.READ_EXTERNAL_STORAGE", "android.permission.READ_EXTERNAL_STORAGE",
"android.permission.WRITE_EXTERNAL_STORAGE", "android.permission.WRITE_EXTERNAL_STORAGE",
"android.permission.READ_MEDIA_VISUAL_USER_SELECTED", "android.permission.READ_MEDIA_VISUAL_USER_SELECTED",
"android.permission.READ_MEDIA_IMAGES", "android.permission.READ_MEDIA_IMAGES"
"android.permission.READ_MEDIA_VIDEO",
"android.permission.READ_MEDIA_AUDIO"
] ]
}, },
"plugins": [ "plugins": [
@@ -42,7 +39,8 @@
[ [
"expo-camera", "expo-camera",
{ {
"cameraPermission": "Allow Schnappix to access the tablet's front-facing camera." "cameraPermission": "Allow Schnappix to access the tablet's front-facing camera.",
"recordAudioAndroid": false
} }
], ],
[ [
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "schnappix", "name": "schnappix",
"version": "1.0.0", "version": "1.0.3",
"main": "index.ts", "main": "index.ts",
"dependencies": { "dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.7.2", "@fortawesome/fontawesome-svg-core": "^6.7.2",