Fix media send issues on Android 4.4.

Before lollipop, Android would ignore activity results for activities
launched with singleTask. So I switched to singleTop, since that should
still solve the problem of double-activity-opens without running into
this issue.

Fixes #9149
master
Greyson Parrelli 2019-11-13 10:28:18 -05:00 committed by Alan Evans
parent 8626d41787
commit b9da012cc4
1 changed files with 1 additions and 1 deletions

View File

@ -299,7 +299,7 @@
<activity android:name=".mediasend.MediaSendActivity"
android:theme="@style/TextSecure.FullScreenMedia"
android:windowSoftInputMode="stateHidden"
android:launchMode="singleTask"
android:launchMode="singleTop"
android:configChanges="touchscreen|keyboard|keyboardHidden|orientation|screenLayout|screenSize"/>
<activity android:name=".PassphraseChangeActivity"