feat(android): add notifications.list node command

This commit is contained in:
Ayaan Zaidi
2026-02-26 14:02:39 +05:30
committed by Ayaan Zaidi
parent c289b5ff9f
commit cf4fe41957
9 changed files with 268 additions and 0 deletions

View File

@@ -38,6 +38,15 @@
android:name=".NodeForegroundService"
android:exported="false"
android:foregroundServiceType="dataSync|microphone|mediaProjection" />
<service
android:name=".node.DeviceNotificationListenerService"
android:label="@string/app_name"
android:permission="android.permission.BIND_NOTIFICATION_LISTENER_SERVICE"
android:exported="false">
<intent-filter>
<action android:name="android.service.notification.NotificationListenerService" />
</intent-filter>
</service>
<provider
android:name="androidx.core.content.FileProvider"
android:authorities="${applicationId}.fileprovider"