Set UpdateApkReadyListener receivers to not exported.

This commit is contained in:
Nicholas
2022-09-29 10:17:39 -04:00
committed by GitHub
parent 0d8ff0ead0
commit 612ce5d0a8

View File

@@ -4,13 +4,13 @@
<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES"/>
<application>
<receiver android:name=".service.UpdateApkRefreshListener">
<receiver android:name=".service.UpdateApkRefreshListener" android:exported="false">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
</receiver>
<receiver android:name=".service.UpdateApkReadyListener">
<receiver android:name=".service.UpdateApkReadyListener" android:exported="false">
<intent-filter>
<action android:name="android.intent.action.DOWNLOAD_COMPLETE"/>
</intent-filter>