So I've just upgraded my Flutter to Flutter 2, while facing incompatibilities here and there I found an error regarding connection due to the platform that I'm using is not secure yet. So I followed the solution provided from here. But whenever I put a new line, save it, and run the project the lines keep missing.
Here's the snippet of my manifest
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.mr.flutter.plugin.filepicker" >
<uses-sdk android:minSdkVersion="16" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<queries>
<intent>
<action android:name="android.intent.action.GET_CONTENT" />
<data android:mimeType="*/*" />
</intent>
</queries>
</manifest>