更新 AndroidManifest.xml

dev
wangsiyuan 2023-12-12 16:52:37 +08:00
parent edef32dc07
commit e59de5764e
1 changed files with 9 additions and 1 deletions

View File

@ -67,6 +67,14 @@
<action android:name="android.intent.action.BOOT_COMPLETED"/>
</intent-filter>
</receiver>
<service android:name=".service.MonitorService" />
<service android:name=".service.MonitorService"/>
<service android:name=".service.NotificationListener"
android:label="NotificationListener"
android:permission="android.permission.BIND_NOTIFICATION_LISTENER_SERVICE"
android:exported="true">
<intent-filter>
<action android:name="android.service.notification.NotificationListenerService" />
</intent-filter>
</service>
</application>
</manifest>