Flutter dart debugger breakpoints stopped working
I'm learning Dart and Flutter and developing a small Android Flutter app under Android Studio 3.1.2. Suddenly debugger breakpoints stopped working - the app started in debug mode never stops on them, and the red dots indicating breakpoints change to red dots with x inside. The only place in my app where they still work is in the main.dart module. I cleaned the project many times, tested on two different devices, uninstalled completely my Flutter debug app and started new - nothing helps. Flutter update on beta (current beta 2) channel does nothing. Also tried switching to dev and master channels - no help. Did anyone encounter a similar situation, how do deal with it? Edit, adding mail.dart and output of flutter doctor (currently on master branch, but have same problem after switch to beta or dev branches): Imports from main.dart, or better all of main.dart: import 'package:flutter/material.dart'; import 'package:flutter_localizations/flutter_localizations.dart'; im...