Logcat Info Appear In Run Tab In Android Studio
my android studio run tab was simple like that: then it become harder and giving me more info like the info in logcat : How can I disable or remove the more info that appear in s
Solution 1:
Solution 2:
flutter v1.17.* makes this problem, so to remove this additional info and warning logs : 1) Install git 2) do this commands by cmd in flutter folder
git clean -xfd
git stash save --keep-index
git stash drop
git pull
3) Delete flutter folder 4) Download flutter v1.12.13+hotfix.5-stable and put it in the place of old flutter folder ( that you deleted in the previus step ).
It Worked Perfectly to me and it gives me only logs for my running flutter app ( I/flutter & W/flutter). If it worked for anyone please let me know if this a right answer.
Post a Comment for "Logcat Info Appear In Run Tab In Android Studio"