Issue
I am able to see debug console in the terminal when I am run the command flutter run
but when I run the command flutter build apk --split-per-abi
it's given me two application
so when I am installing one of this apk in my android phone, I am not able to see any debug output or my print.
I want to know how can I do this because my app is working fine in debug mode but when I installed flutter build apk --split-per-abi this apk, my app crash after two or three pages because of an external plugin.
How can I check debug console when I am installed the app through apk?
Solution
flutter attach
and then start your application. Or using adb logcat:
adb logcat *:S flutter:V
Answered By - Igor Kharakhordin
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.