更新 AndroidManifest.xml

This commit is contained in:
2023-12-12 16:52:37 +08:00
parent edef32dc07
commit e59de5764e

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>