Swap flutter for flutterw in the scripts

This commit is contained in:
Vishesh Handa
2021-09-14 08:33:52 +02:00
parent 16da4b95f5
commit 68447e7afa
2 changed files with 10 additions and 10 deletions

View File

@ -22,10 +22,10 @@ if [[ $DEVICE_TARGET == *"android"* ]]; then
echo
echo "flutter run -d $DEVICE_ID --flavor dev --track-widget-creation"
echo
flutter run -d "$DEVICE_ID" --flavor dev --track-widget-creation
./flutterw run -d "$DEVICE_ID" --flavor dev --track-widget-creation
else
echo
echo "flutter run -d $DEVICE_ID --track-widget-creation"
echo
flutter run -d "$DEVICE_ID" --track-widget-creation
./flutterw run -d "$DEVICE_ID" --track-widget-creation
fi