From c28c72511ea642650e84bafba8fa779bca93a176 Mon Sep 17 00:00:00 2001 From: bjoern Date: Mon, 31 Oct 2022 21:47:47 +0100 Subject: [PATCH] fix crash in share-to-delta and similar issues (#2411) * fix crash in share-to-delta the crash was introduced by 1.34.2 that was released for testing only. reason is a wrong `exported` flag - it makes sense to have `exported="true"` here. the flag was added in https://github.com/deltachat/deltachat-android/pull/2407 as needed for android12 - and i was assuming that the old default was `false` and set that value to all missing ones. that assumption seems to be wrong, so we should double-check all flags changed by https://github.com/deltachat/deltachat-android/pull/2407 * set exported=true; this is the pre-android12 default in case there intent-filters --- AndroidManifest.xml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/AndroidManifest.xml b/AndroidManifest.xml index 5a52d271a..babca2c94 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -64,7 +64,7 @@ android:taskAffinity="" android:windowSoftInputMode="stateHidden" android:configChanges="touchscreen|keyboard|keyboardHidden|orientation|screenLayout|screenSize" - android:exported="false"> + android:exported="true"> @@ -177,7 +177,7 @@ android:theme="@style/TextSecure.LightNoActionBar" android:windowSoftInputMode="stateHidden" android:configChanges="touchscreen|keyboard|keyboardHidden|orientation|screenLayout|screenSize" - android:exported="false"> + android:exported="true"> @@ -200,7 +200,7 @@ android:launchMode="singleTask" android:theme="@style/TextSecure.LightNoActionBar" android:configChanges="touchscreen|keyboard|keyboardHidden|orientation|screenLayout|screenSize" - android:exported="false"> + android:exported="true"> @@ -221,7 +221,7 @@ android:launchMode="singleTask" android:windowSoftInputMode="stateUnchanged" android:configChanges="touchscreen|keyboard|keyboardHidden|orientation|screenLayout|screenSize" - android:exported="false"> + android:exported="true"> @@ -372,7 +372,7 @@ + android:exported="true">