UNPKG

capacitor-notification-reader

Version:

Capacitor plugin to read and persist Android notifications with RoomDB storage

17 lines (15 loc) 744 B
<manifest xmlns:android="http://schemas.android.com/apk/res/android"> <!-- Required for querying package info (app names, icons) on Android 11+ --> <uses-permission android:name="android.permission.QUERY_ALL_PACKAGES" /> <application> <service android:name="com.whyash5114.plugins.notificationreader.NotificationListenerService" android:exported="true" android:label="Notification Access" android:permission="android.permission.BIND_NOTIFICATION_LISTENER_SERVICE"> <intent-filter> <action android:name="android.service.notification.NotificationListenerService" /> </intent-filter> </service> </application> </manifest>