22 lines
697 B
XML
22 lines
697 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:installLocation="auto"
|
|
>
|
|
|
|
<application
|
|
android:allowBackup="false"
|
|
android:hasFragileUserData="false"
|
|
android:networkSecurityConfig="@xml/network_security_config"
|
|
android:usesCleartextTraffic="true"
|
|
/>
|
|
|
|
<queries>
|
|
<!-- Allow access to external text processing actions so they can be displayed in the text selection toolbar -->
|
|
<intent>
|
|
<action android:name="android.intent.action.PROCESS_TEXT" />
|
|
<data android:mimeType="text/plain" />
|
|
</intent>
|
|
</queries>
|
|
|
|
</manifest>
|