AndroidManifest.xml (922B)
1 <!-- This Source Code Form is subject to the terms of the Mozilla Public 2 - License, v. 2.0. If a copy of the MPL was not distributed with this file, 3 - You can obtain one at http://mozilla.org/MPL/2.0/. --> 4 <manifest xmlns:android="http://schemas.android.com/apk/res/android" 5 xmlns:tools="http://schemas.android.com/tools"> 6 <!-- Adds the ability to discover apps that have matching <intent-filter> elements. 7 Needed for PackageManager.queryIntentActivities calls. 8 See https://developer.android.com/training/package-visibility/declaring for more details.--> 9 10 <uses-permission android:name="android.permission.QUERY_ALL_PACKAGES" 11 tools:ignore="PackageVisibilityPolicy,QueryAllPackagesPermission" /> 12 13 <queries> 14 <intent> 15 <action android:name="android.intent.action.SEND" /> 16 <data android:mimeType="text/plain" /> 17 </intent> 18 </queries> 19 </manifest>