diff options
Diffstat (limited to 'java/AndroidManifest.xml.in')
| -rw-r--r-- | java/AndroidManifest.xml.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/java/AndroidManifest.xml.in b/java/AndroidManifest.xml.in index d4017a055dd..9ba9dabde81 100644 --- a/java/AndroidManifest.xml.in +++ b/java/AndroidManifest.xml.in | |||
| @@ -110,7 +110,10 @@ along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. --> | |||
| 110 | <action android:name="android.intent.action.EDIT"/> | 110 | <action android:name="android.intent.action.EDIT"/> |
| 111 | <action android:name="android.intent.action.PICK"/> | 111 | <action android:name="android.intent.action.PICK"/> |
| 112 | <category android:name="android.intent.category.DEFAULT"/> | 112 | <category android:name="android.intent.category.DEFAULT"/> |
| 113 | <data android:mimeType="*/*"/> | 113 | <!-- Don't offer to start Emacs for URLs that designate |
| 114 | resources other than files. --> | ||
| 115 | <data android:mimeType="*/*" android:scheme="file"/> | ||
| 116 | <data android:mimeType="*/*" android:scheme="content"/> | ||
| 114 | </intent-filter> | 117 | </intent-filter> |
| 115 | 118 | ||
| 116 | <!-- Facilitate opening org-protocol:// URLs as well, the same | 119 | <!-- Facilitate opening org-protocol:// URLs as well, the same |