Skip to content

Instantly share code, notes, and snippets.

@progressify
Created December 5, 2025 11:27
Show Gist options
  • Select an option

  • Save progressify/573a96505ef010e306a8f2f5a67d9a8f to your computer and use it in GitHub Desktop.

Select an option

Save progressify/573a96505ef010e306a8f2f5a67d9a8f to your computer and use it in GitHub Desktop.
Build Android
#!/bin/bash
echo -e "\n🧹 Pulisco il progetto..."
flutter clean
echo -e "\n🏛️ Eseguo la build dell'Appbundle..."
flutter build appbundle
if [ $? -ne 0 ]; then
echo -e "❌ Build fallita."
exit 1
fi
open ./build/app/outputs/bundle/release
echo -e "\n🚀 Sei pronto per caricare il bundle su Play Store."
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment