Skip to main content

Run This App

Open your terminal, navigate to your project path and execute the following command to run this app.

flutter run

Commonly used commands

๐Ÿ“ฆ Update iOS Podsโ€‹

cd ios
pod init
pod update
pod install
cd ..

๐Ÿงน Clean Pub Cacheโ€‹

flutter clean
flutter pub cache clean
flutter pub get

๐Ÿ”ง Repair Pub Cacheโ€‹

flutter clean
flutter pub cache repair
flutter pub get

๐Ÿ“ฑ Generate Android APKโ€‹

flutter build apk --split-per-abi
open build/app/outputs/flutter-apk/

๐Ÿ› ๏ธ Solve Common iOS Errorsโ€‹

flutter clean
rm -Rf ios/Pods
rm -Rf ios/.symlinks
rm -Rf ios/Flutter/Flutter.framework
rm -Rf Flutter/Flutter.podspec
rm ios/podfile.lock
cd ios
pod deintegrate
sudo rm -rf ~/Library/Developer/Xcode/DerivedData
flutter pub cache repair
flutter pub get
pod install
pod update