add notifcaiton support with unmount button

This commit is contained in:
2026-03-10 01:01:20 +05:00
parent 0c5524a9a5
commit 93c239eb12
9 changed files with 259 additions and 0 deletions

View File

@@ -12,6 +12,9 @@
tools:ignore="ScopedStorage" />
<uses-permission android:name="android.permission.READ_MEDIA_IMAGES" />
<!-- Notification permission for Android 13+ -->
<uses-permission android:name="android.permission.POST_NOTIFICATIONS" />
<!-- Query for root shell packages -->
<queries>
<intent>
@@ -44,6 +47,11 @@
</intent-filter>
</activity>
<!-- Broadcast receiver for unmount action from notification -->
<receiver
android:name=".notification.UnmountReceiver"
android:exported="false" />
</application>
</manifest>