From 177081e4b720d454db4a440239bf66d9dcec75df Mon Sep 17 00:00:00 2001 From: ByteHamster Date: Tue, 23 Feb 2021 09:28:34 +0100 Subject: Explicitly specify exported attribute for Android 12 compatibility --- app/src/main/AndroidManifest.xml | 42 ++++++++++++++++++++++++++-------------- 1 file changed, 27 insertions(+), 15 deletions(-) (limited to 'app/src') diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index 79fcc430f..697624337 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -60,7 +60,8 @@ + android:configChanges="keyboardHidden|orientation|screenSize" + android:exported="true"> @@ -83,7 +84,8 @@ android:configChanges="keyboardHidden|orientation|screenSize|smallestScreenSize|screenLayout|density|uiMode|keyboard|navigation" android:windowSoftInputMode="stateAlwaysHidden" android:launchMode="singleTask" - android:label="@string/app_name"> + android:label="@string/app_name" + android:exported="true"> @@ -128,7 +130,8 @@ + android:label="@string/widget_settings" + android:exported="true"> @@ -141,21 +144,21 @@ android:exported="false"> - + - - - + @@ -163,7 +166,8 @@ + android:label="@string/opml_import_label" + android:exported="true"> @@ -212,7 +216,8 @@ android:name=".activity.VideoplayerActivity" android:configChanges="keyboardHidden|orientation|screenSize|screenLayout|smallestScreenSize" android:supportsPictureInPicture="true" - android:screenOrientation="sensorLandscape"> + android:screenOrientation="sensorLandscape" + android:exported="false"> @@ -226,7 +231,8 @@ android:name=".activity.OnlineFeedViewActivity" android:configChanges="orientation|screenSize" android:theme="@style/Theme.AntennaPod.Dark.Translucent" - android:label="@string/add_feed_label"> + android:label="@string/add_feed_label" + android:exported="true"> @@ -314,20 +320,26 @@ - + - + - + -- cgit v1.2.3