Sign in with QR code (#2793)

* Add QR code login.
* Add FF to disable it in release mode.
* Force portrait orientation on the login flow.
* Create `NumberedList` UI components.
* Improve camera permission dialog.
* Make nodes in qrcode feature use `QrCodeLoginScope` instead of `AppScope`
* Bump SDK version.
* Fix maestro tests

---------

Co-authored-by: Benoit Marty <benoit@matrix.org>
Co-authored-by: ElementBot <benoitm+elementbot@element.io>
This commit is contained in:
Jorge Martin Espinosa
2024-05-31 14:38:27 +02:00
committed by GitHub
parent e0c55ff4c8
commit 35702c04e9
253 changed files with 4421 additions and 326 deletions

View File

@@ -36,9 +36,15 @@ dependencyResolutionManagement {
includeModule("io.element.android", "wysiwyg-compose")
}
}
// To have immediate access to Rust SDK versions without a sync with Maven Central
maven {
url = URI("https://s01.oss.sonatype.org/content/repositories/releases")
content {
includeModule("org.matrix.rustcomponents", "sdk-android")
}
}
google()
mavenCentral()
maven { url = URI("https://oss.sonatype.org/content/repositories/snapshots/") }
maven {
url = URI("https://www.jitpack.io")
content {
@@ -46,10 +52,6 @@ dependencyResolutionManagement {
includeModule("com.github.matrix-org", "matrix-analytics-events")
}
}
// To have immediate access to Rust SDK versions
maven {
url = URI("https://s01.oss.sonatype.org/content/repositories/releases")
}
flatDir {
dirs("libraries/matrix/libs")
}