I\'m using Android Studio for Flutter App Development. Everything seems to be working fine just that the Android Studio does not show the \"logs\" in Logcat
I guess it's an ADB issue. You can restart AS (or maybe even your Computer) or what i usually do is open the terminal an then: adb kill-server && adb start-server
(I think the second part adb start-server
is not necessary because it seems that AS handles it automatically) - anyways this is how LogCat and Android (and Flutter) work for me every time.