After sound null safety has arrived, projects that still have dependencies that have not upgraded to null safety yet, can still be run using --no-sound-null-safety
flag through the Flutter command.
But now I am trying to run the app through the android
project. The reason why I am trying to do this way is to allow me to debug a native Flutter plugin. I open the folder android
on Android Studio and when I try to run the project I receive an error:
Error: Cannot run with sound null safety, because the following dependencies don't support null safety:
If I was running through the Flutter command, the flag I mentioned would work here. But how do I set this flag when running the android
project through Android Studio?