# Build Android version of the app name: Android on: push: pull_request: jobs: build: runs-on: ubuntu-latest container: image: docker.io/nixos/nix:latest steps: - name: Install nodejs (for checkout action) run: nix-env -iA nixpkgs.nodejs_24 - name: Checkout code uses: actions/checkout@v3 - name: Collect Translation Files run: | cd lib/l10n nix --extra-experimental-features 'nix-command flakes' develop --command python3 collect_translations.py cd ../.. - name: Build Debug APK run: | nix --extra-experimental-features 'nix-command flakes' develop --command flutter build apk --debug