<manifest xmlns:android="http://schemas.android.com/apk/res/android">
    <!-- The INTERNET permission is required for development. Specifically,
         the Flutter tool needs it to communicate with the running application
         to allow setting breakpoints, to provide hot reload, etc.
    -->
    <uses-permission android:name="android.permission.INTERNET"/>

    <!-- Debug-only: apply a network security config that whitelists the dev
         backend hosts (LAN IP, emulator loopback, localhost) for cleartext
         HTTP. The matching xml lives at src/debug/res/xml/. Release builds
         do not see either resource and fall back to the strict platform
         default (cleartext blocked). -->
    <application
        android:networkSecurityConfig="@xml/network_security_config"/>
</manifest>
