@echo off echo ======================================== echo GEUTEBRUCK APP - REBUILD AND RUN echo ======================================== echo. echo [1/4] Killing all Flutter processes... taskkill /F /IM dart.exe /T >nul 2>&1 taskkill /F /IM flutter.exe /T >nul 2>&1 timeout /t 2 /nobreak >nul echo [2/4] Cleaning build artifacts... cd C:\DEV\COPILOT\geutebruck_app C:\flutter\bin\flutter.bat clean echo [3/4] Getting dependencies... C:\flutter\bin\flutter.bat pub get echo [4/4] Running app on Chrome... echo. echo ======================================== echo APP WILL OPEN IN CHROME echo Look for "Add Output Action" button echo ======================================== echo. start "" "C:\Program Files\Google\Chrome\Application\chrome.exe" --new-window C:\flutter\bin\flutter.bat run -d chrome pause