Fix api breaks:

- `ComposerDraft` now takes a list of media attachments.
- `HumanQrLoginException` has a couple of new cases.
- `Client.loginWithQrCode` now returns a `LoginWithQrCodeHandle`, which we need to call using `scan` to have the same behaviour as before.
This commit is contained in:
Jorge Martín 2025-10-28 17:12:40 +01:00
parent 64be18da36
commit 0d40a2fd79
5 changed files with 20 additions and 10 deletions

View file

@ -5,11 +5,9 @@
* Please see LICENSE files in the repository root for full details.
*/
import java.net.URI
pluginManagement {
repositories {
includeBuild("plugins")
includeBuild("plugins")
gradlePluginPortal()
google()
mavenCentral()
@ -18,14 +16,17 @@ pluginManagement {
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven {
url = URI("https://www.jitpack.io")
url = uri("https://www.jitpack.io")
content {
includeModule("com.github.matrix-org", "matrix-analytics-events")
}
}
google()
mavenCentral()
maven {
url = uri("https://repo1.maven.org/maven2/")
}
flatDir {
dirs("libraries/matrix/libs")
}