Switch off enableOnBackInvokedCallback due to androidx bug (#1517)

Switch off `enableOnBackInvokedCallback` until https://issuetracker.google.com/issues/271303558 is fixed.


Fixes https://github.com/vector-im/element-x-android/issues/1461
This commit is contained in:
Marco Romano
2023-10-09 10:39:56 +02:00
committed by GitHub
parent 1bfe7b7224
commit 049742b2cc
2 changed files with 3 additions and 1 deletions

View File

@@ -20,11 +20,12 @@
<!-- To be able to install APK from the application -->
<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" />
<!-- Do not enable enableOnBackInvokedCallback until https://issuetracker.google.com/issues/271303558 is fixed -->
<application
android:name=".ElementXApplication"
android:allowBackup="false"
android:dataExtractionRules="@xml/data_extraction_rules"
android:enableOnBackInvokedCallback="true"
android:enableOnBackInvokedCallback="false"
android:fullBackupContent="@xml/backup_rules"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"

1
changelog.d/1517.bugfix Normal file
View File

@@ -0,0 +1 @@
Fix back button not working in bottom sheets.