Update flutter dependencies in /.pub-cache

Disclaimer: By running the command below, have a really fast internet connection or be ready to lose one hour of productive hours. ( it will redownload every package every installed on your pc, and I mean each and all of the versions of each packages)~TSR flutter pub cache repair or delete /Users/xxxxxxx/development/tools/flutter/.pub-cache/hosted/pub.dartlang.org/cloud_firestore-0.8.2+3/ and run flutter … Read more

Flutter plugin not installed error; When running ‘flutter doctor’

Safe fix for Mac (Android Studio 4.1+). It is in a different directory now, but the symbolic link helps. Just run this command in the Terminal: ln -s ~/Library/Application\ Support/Google/AndroidStudio4.1/plugins ~/Library/Application\ Support/AndroidStudio4.1 If you have a different Android Studio version or an installation folder, adjust the command accordingly.

Check whether there is an Internet connection available on Flutter app

The connectivity plugin states in its docs that it only provides information if there is a network connection, but not if the network is connected to the Internet Note that on Android, this does not guarantee connection to Internet. For instance, the app might have wifi access but it might be a VPN or a … Read more