14 lines
522 B
XML
Raw Normal View History

2021-09-18 23:37:52 +02:00
<?xml version="1.0" encoding="utf-8"?>
2022-05-09 19:56:05 +02:00
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
2021-09-18 23:37:52 +02:00
<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>