Suppress matched native notification alerts

This commit is contained in:
ajp_anton
2026-08-18 05:25:48 +00:00
parent 7166cfe18b
commit 68771d5836
13 changed files with 341 additions and 85 deletions
+14 -3
View File
@@ -3,6 +3,12 @@
xmlns:tools="http://schemas.android.com/tools">
<uses-permission android:name="android.permission.USE_BIOMETRIC" />
<uses-permission android:name="android.permission.VIBRATE" />
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<uses-permission android:name="se.ajpanton.notificationsmaster.permission.UPDATE_ALERT_POLICY" />
<permission
android:name="se.ajpanton.notificationsmaster.permission.UPDATE_ALERT_POLICY"
android:protectionLevel="signature" />
<!-- Required for the all-installed-apps filter; this app is not distributed through Google Play. -->
<uses-permission
@@ -38,9 +44,14 @@
</intent-filter>
</service>
<service
android:name=".module.AlertPolicyService"
android:exported="true" />
<receiver
android:name=".module.AlertPolicyBootReceiver"
android:enabled="false"
android:exported="false">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
</receiver>
</application>
</manifest>