15 lines
568 B
XML
15 lines
568 B
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
package="de.mm20.launcher2.notifications">
|
||
|
|
|
||
|
|
<application>
|
||
|
|
<service
|
||
|
|
android:name=".NotificationService"
|
||
|
|
android:exported="true"
|
||
|
|
android:permission="android.permission.BIND_NOTIFICATION_LISTENER_SERVICE">
|
||
|
|
<intent-filter>
|
||
|
|
<action android:name="android.service.notification.NotificationListenerService" />
|
||
|
|
</intent-filter>
|
||
|
|
</service>
|
||
|
|
</application>
|
||
|
|
</manifest>
|