Updater: Add exported flags in manifest

Targeting S+ (version 31 and above) requires that an explicit value
for android:exported be defined when intent filters are present

Change-Id: I2ce2b2cd1dcd69e343ae8577587483b19d825fdc
This commit is contained in:
Michael Bestas
2021-10-11 18:20:51 +03:00
committed by Michael W
parent e0bcaec5b6
commit 8f332103fe

View File

@@ -25,6 +25,7 @@
android:name=".UpdatesActivity"
android:excludeFromRecents="true"
android:label="@string/display_name"
android:exported="true"
android:theme="@style/AppTheme.NoActionBar"
android:launchMode="singleTop">
<intent-filter android:priority="1">
@@ -50,7 +51,7 @@
</intent-filter>
</receiver>
<receiver android:name=".UpdatesCheckReceiver">
<receiver android:name=".UpdatesCheckReceiver" android:exported="true">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED"/>
</intent-filter>