Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/news-android.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Luhmer <david-dev@live.de>2019-06-05 20:34:30 +0300
committerDavid Luhmer <david-dev@live.de>2019-06-05 20:34:30 +0300
commitdf81e55505bb5e21aaef8d4356c0d09e6272f9e5 (patch)
tree3b716bc18a8b142fd836a67430705fd201073d89
parent214b3aaa9db9a2cd5f8745e2c0fb9443608d789a (diff)
add missing intent filter in order to complete lint tests
-rw-r--r--News-Android-App/src/main/AndroidManifest.xml7
1 files changed, 6 insertions, 1 deletions
diff --git a/News-Android-App/src/main/AndroidManifest.xml b/News-Android-App/src/main/AndroidManifest.xml
index 0c158781..5cc1c0a4 100644
--- a/News-Android-App/src/main/AndroidManifest.xml
+++ b/News-Android-App/src/main/AndroidManifest.xml
@@ -43,9 +43,14 @@
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
-
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
+
+ <!-- Use this intent filter to get voice searches -->
+ <intent-filter>
+ <action android:name="android.media.action.MEDIA_PLAY_FROM_SEARCH" />
+ <category android:name="android.intent.category.DEFAULT" />
+ </intent-filter>
</activity> <!-- android:configChanges="keyboardHidden|orientation|screenSize" -->
<activity