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
This commit is contained in:
parent
8626d41787
commit
b9da012cc4
1 changed files with 1 additions and 1 deletions
|
@ -299,7 +299,7 @@
|
||||||
<activity android:name=".mediasend.MediaSendActivity"
|
<activity android:name=".mediasend.MediaSendActivity"
|
||||||
android:theme="@style/TextSecure.FullScreenMedia"
|
android:theme="@style/TextSecure.FullScreenMedia"
|
||||||
android:windowSoftInputMode="stateHidden"
|
android:windowSoftInputMode="stateHidden"
|
||||||
android:launchMode="singleTask"
|
android:launchMode="singleTop"
|
||||||
android:configChanges="touchscreen|keyboard|keyboardHidden|orientation|screenLayout|screenSize"/>
|
android:configChanges="touchscreen|keyboard|keyboardHidden|orientation|screenLayout|screenSize"/>
|
||||||
|
|
||||||
<activity android:name=".PassphraseChangeActivity"
|
<activity android:name=".PassphraseChangeActivity"
|
||||||
|
|
Loading…
Add table
Reference in a new issue