14 lines
696 B
XML
14 lines
696 B
XML
<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"/>
|
|
|
|
<!-- Allow cleartext HTTP in debug builds so developers can point the
|
|
Marianum-Connect custom endpoint at a local backend (e.g.
|
|
http://10.0.2.2:8080 from the Android emulator). Release builds
|
|
keep the default cleartext block. -->
|
|
<application android:usesCleartextTraffic="true" />
|
|
</manifest>
|