Skip to content

Revert "Eliminate all fade, alpha, and transition animations." #403

Revert "Eliminate all fade, alpha, and transition animations."

Revert "Eliminate all fade, alpha, and transition animations." #403

Workflow file for this run

name: Build Debug APK
on:
push:
branches:
- '**'
workflow_dispatch:
jobs:
build:
name: Build APK
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Set up JDK 17
uses: actions/setup-java@v5
with:
distribution: temurin
java-version: 17
# Gradle cache (normal, not nuked)
- name: Cache Gradle
uses: actions/cache@v5
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: Make gradlew executable
run: chmod +x ./gradlew
- name: Build Debug APK
run: ./gradlew assembleDebug
- name: Upload Debug APK
uses: actions/upload-artifact@v7
with:
name: app-debug.apk
path: app/build/outputs/apk/debug/app-debug.apk