mail/app/ui/legacy/src/main/AndroidManifest.xml
2025-11-24 18:55:42 +01:00

48 lines
1.6 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<uses-permission android:name="android.permission.VIBRATE" />
<application
android:theme="@style/Theme.K9.Light"
android:supportsRtl="true" />
<queries>
<intent>
<!-- Used to check whether to display the "Add from Contacts" menu item in the compose screen -->
<action android:name="android.intent.action.PICK" />
<data
android:mimeType="*/*"
android:scheme="content"
android:host="com.android.contacts" />
</intent>
<intent>
<!-- Used by AttachmentController to find the best Intent to view an attachment -->
<action android:name="android.intent.action.VIEW" />
<data
android:mimeType="*/*"
android:scheme="content" />
</intent>
<intent>
<!-- Used by the OpenPGP API -->
<action android:name="org.openintents.openpgp.IOpenPgpService2" />
</intent>
<intent>
<!-- Used by OpenPgpAppSelectDialog -->
<action android:name="android.intent.action.VIEW" />
<data
android:mimeType="*/*"
android:scheme="market"
android:host="details" />
</intent>
<intent>
<!-- Used by OpenPgpAppSelectDialog -->
<action android:name="org.openintents.openpgp.IOpenPgpService" />
</intent>
</queries>
</manifest>