How to Fix Flutter Warning: Your Flutter application is created using an older version
You can add this to AndroidManifest.xml
under activity
tag.
<meta-data
android:name="flutterEmbedding"
android:value="2" />
This should remove the warning.
Create a new flutter project and copy your source files over onto it.