diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index c0d403e..6957a8a 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -48,17 +48,16 @@ jobs: --output=./app-build \ --platform=android \ --profile=preview - working-directory: mobile # Neuer Schritt: Rename das Binary, damit es wie eine echte App aussieht - name: 📝 Rename build to APK - run: mv mobile/app-build mobile/app-release.apk + run: mv app-build app-release.apk - name: 📤 Upload build artifact uses: actions/upload-artifact@v3 with: name: android-preview-build - path: mobile/app-release.apk + path: app-release.apk if-no-files-found: error - name: 🏷 Create tag @@ -73,7 +72,7 @@ jobs: with: tag_name: ${{ env.RELEASE_TAG }} name: ${{ env.RELEASE_TAG }} - files: mobile/app-release.apk + files: app-release.apk generate_release_notes: true env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file diff --git a/app.json b/app.json index d1fc154..912989d 100644 --- a/app.json +++ b/app.json @@ -6,7 +6,6 @@ "orientation": "default", "icon": "./assets/icon.png", "userInterfaceStyle": "automatic", - "newArchEnabled": true, "splash": { "image": "./assets/splash-icon.png", "resizeMode": "contain", @@ -20,11 +19,10 @@ "adaptiveIcon": { "foregroundImage": "./assets/adaptive-icon.png", "backgroundColor": "#0d0d0d" - }, - "edgeToEdgeEnabled": true + } }, "web": { - "favicon": "./assets/favicon.png", + "favicon": "./assets/icon.png", "name": "Time Until", "themeColor": "#0d0d0d", "backgroundColor": "#0d0d0d" diff --git a/assets/adaptive-icon.png b/assets/adaptive-icon.png index 03d6f6b..0db9e07 100644 Binary files a/assets/adaptive-icon.png and b/assets/adaptive-icon.png differ diff --git a/assets/favicon.png b/assets/favicon.png deleted file mode 100644 index e75f697..0000000 Binary files a/assets/favicon.png and /dev/null differ diff --git a/assets/icon.png b/assets/icon.png index a0b1526..b6a2553 100644 Binary files a/assets/icon.png and b/assets/icon.png differ diff --git a/assets/splash-icon.png b/assets/splash-icon.png index 03d6f6b..ba5f039 100644 Binary files a/assets/splash-icon.png and b/assets/splash-icon.png differ