1
0
Fork 0
mirror of https://github.com/MatomoCamp/matomocamp-companion-android.git synced 2024-09-19 16:13:46 +02:00

Added intent-filter to enable link to notification settings when long-pressing a notification in API 21+

This commit is contained in:
Christophe Beyls 2016-11-27 04:34:42 +01:00
parent e38db9ae58
commit 9496513e7e

View file

@ -91,7 +91,12 @@
android:theme="@style/AlertDialogTheme"/> android:theme="@style/AlertDialogTheme"/>
<activity <activity
android:name=".activities.SettingsActivity" android:name=".activities.SettingsActivity"
android:label="@string/settings"/> android:label="@string/settings">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.NOTIFICATION_PREFERENCES"/>
</intent-filter>
</activity>
<receiver <receiver
android:name=".receivers.AlarmReceiver" android:name=".receivers.AlarmReceiver"