Trying to run the app on my two iOS devices by doing flutter run -d all
. However, I am getting database is locked Possibly there are two concurrent builds running in the same filesystem location.
error.
What have I tried
flutter clean
flutter run
separately- running the app on iPad on the terminal & on iPhone on xCode works
So, it looks like I am having a problem to run Flutter app on my two iOS devices at the same time.
Is there any solution for this?
You can run the app in the release mod by using
flutter run --release
on multiple ios devices. Tested and worked inside the android studio.