Fix NFC Intent and URL input behavior
SWE will show up for valid NFC intents.
When editing the URL, the voice input icon
shows up only when the url is empty.
Change-Id: If8338a03e4a18bcc78acfdb58bab331bec9af9cd
diff --git a/AndroidManifest.xml.jinja2 b/AndroidManifest.xml.jinja2
index 0c421c6..d888de2 100644
--- a/AndroidManifest.xml.jinja2
+++ b/AndroidManifest.xml.jinja2
@@ -136,8 +136,8 @@
<data android:scheme="file" />
<data android:mimeType="application/x-webarchive-xml"/>
</intent-filter>
- <!-- Accept inbound NFC URLs at a low priority -->
- <intent-filter android:priority="-101">
+ <!-- Accept inbound NFC URLs -->
+ <intent-filter>
<action android:name="android.nfc.action.NDEF_DISCOVERED" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="http" />