Files
localsend/scripts/compile_android_appbundle.ps1
2023-10-26 13:33:02 +02:00

12 lines
260 B
PowerShell

# UNCOMMENT THESE LINES TO BUILD FROM LATEST COMMIT
# git reset --hard origin/main
# git pull
cd app
fvm flutter clean
fvm flutter pub get
fvm flutter pub run build_runner build -d
fvm flutter build appbundle
cd ..
Write-Output 'Generated Android Appbundle!'