Support unarchiving apps on Android 15+ devices

Signed-off-by: Aayush Gupta <aayushgupta219@gmail.com>
This commit is contained in:
Aayush Gupta
2024-10-09 21:52:14 +05:30
parent dfc223d8cb
commit 98322b3358
5 changed files with 108 additions and 1 deletions

View File

@@ -173,5 +173,14 @@
<action android:name="android.intent.action.MY_PACKAGE_REPLACED" />
</intent-filter>
</receiver>
<!-- Android15+ package unarchive feature -->
<receiver
android:name=".data.receiver.UnarchivePackageReceiver"
android:exported="false">
<intent-filter>
<action android:name="android.intent.action.UNARCHIVE_PACKAGE" />
</intent-filter>
</receiver>
</application>
</manifest>