Notification listener started.

This commit is contained in:
2021-03-26 19:58:27 +01:00
parent 56806f0349
commit 5d6221888a
11 changed files with 591 additions and 28 deletions

View File

@ -202,17 +202,19 @@
<!-- https://developer.android.com/about/versions/pie/android-9.0-changes-28#apache-p-->
<uses-library android:name="org.apache.http.legacy" android:required="false"/>
<service android:name=".location.GeofenceIntentService"/>
<!--<service android:name=".location.GeofenceIntentService"/>-->
<service android:name=".receivers.NotificationListener"
android:permission="android.permission.BIND_NOTIFICATION_LISTENER_SERVICE">
<activity android:name=".ActivityManageNotificationTrigger"></activity>
<service
android:name=".receivers.NotificationListener"
android:label="NotificationListener"
android:permission="android.permission.BIND_NOTIFICATION_LISTENER_SERVICE" >
<intent-filter>
<action android:name="android.service.notification.NotificationListenerService" />
</intent-filter>
<meta-data
android:name="android.service.notification.default_filter_types"
android:value="1,2">
</meta-data>
</service>
</application>