Skip to content

Commit e1cbf9c

Browse files
committed
Merge branch 'release/1.6.44' into main
2 parents 81317ae + 3ad7f56 commit e1cbf9c

File tree

183 files changed

+1521
-921
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

183 files changed

+1521
-921
lines changed

.github/workflows/post-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
ui-tests:
3232
name: UI Tests (Synapse)
3333
needs: should-i-run
34-
runs-on: buildjet-4vcpu-ubuntu-2204
34+
runs-on: ubuntu-22.04
3535
timeout-minutes: 90 # We might need to increase it if the time for tests grows
3636
strategy:
3737
fail-fast: false

.github/workflows/tests.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
11
name: Test
22

33
on:
4-
pull_request: { }
5-
push:
6-
branches: [ main, develop ]
7-
paths-ignore:
8-
- '.github/**'
4+
workflow_dispatch:
95

106
# Enrich gradle.properties for CI/CD
117
env:
@@ -15,7 +11,7 @@ env:
1511
jobs:
1612
tests:
1713
name: Runs all tests
18-
runs-on: buildjet-4vcpu-ubuntu-2204
14+
runs-on: ubuntu-22.04
1915
timeout-minutes: 90 # We might need to increase it if the time for tests grows
2016
strategy:
2117
matrix:

CHANGES.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
Changes in Element v1.6.44 (2025-08-06)
2+
=======================================
3+
4+
Other changes
5+
-------------
6+
- Hide the "Manually Verify by Text" option behind devtool flag. ([#9058](https://github.com/element-hq/element-android/issues/9058))
7+
- Change targetSdk to 35. ([#9051](https://github.com/element-hq/element-android/issues/9051))
8+
- Support room v12. ([#9065](https://github.com/element-hq/element-android/issues/9065))
9+
- Fix window insets. ([#9067](https://github.com/element-hq/element-android/issues/9067))
10+
11+
112
Changes in Element v1.6.42 (2025-06-10)
213
=======================================
314

README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,7 @@
77

88
# Element Android
99

10-
Element Android is an Android Matrix Client provided by [Element](https://element.io/). The app can be run on every Android devices with Android OS Lollipop and more (API 21).
11-
12-
It is a total rewrite of [Riot-Android](https://github.com/element-hq/riot-android) with a new user experience.
10+
Element Classic Android is a previous-generation [Matrix](https://matrix.org/) client provided by [Element](https://element.io/). The app can be run on every Android devices with Android OS Lollipop and more (API 21). This client is still supported and receives security updates but no new features or usability enhancements are made. It is recommended to use [Element X](https://github.com/element-hq/element-x-android) that is the next-generation mobile app.
1311

1412
[<img src="resources/img/google-play-badge.png" alt="Get it on Google Play" height="60">](https://play.google.com/store/apps/details?id=im.vector.app)
1513
[<img src="resources/img/f-droid-badge.png" alt="Get it on F-Droid" height="60">](https://f-droid.org/app/im.vector.app)

dependencies.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
ext.versions = [
22
'minSdk' : 21,
3-
'compileSdk' : 34,
4-
'targetSdk' : 34,
3+
'compileSdk' : 35,
4+
'targetSdk' : 35,
55
'sourceCompat' : JavaVersion.VERSION_21,
66
'targetCompat' : JavaVersion.VERSION_21,
77
'jvmTarget' : "21",
88
]
99

10-
def gradle = "8.4.2"
10+
def gradle = "8.11.0"
1111
// Ref: https://kotlinlang.org/releases.html
1212
def kotlin = "1.9.24"
1313
def kotlinCoroutines = "1.8.1"
@@ -27,7 +27,7 @@ def bigImageViewer = "1.8.1"
2727
def jjwt = "0.11.5"
2828
def vanniktechEmoji = "0.16.0"
2929
def sentry = "6.18.1"
30-
def fragment = "1.8.1"
30+
def fragment = "1.8.6"
3131
// Testing
3232
def mockk = "1.13.11"
3333
def espresso = "3.6.1"
@@ -50,7 +50,7 @@ ext.libs = [
5050
'activity' : "androidx.activity:activity-ktx:1.9.0",
5151
'appCompat' : "androidx.appcompat:appcompat:1.7.0",
5252
'biometric' : "androidx.biometric:biometric:1.1.0",
53-
'core' : "androidx.core:core-ktx:1.10.1",
53+
'core' : "androidx.core:core-ktx:1.16.0",
5454
'recyclerview' : "androidx.recyclerview:recyclerview:1.3.0",
5555
'exifinterface' : "androidx.exifinterface:exifinterface:1.3.6",
5656
'fragmentKtx' : "androidx.fragment:fragment-ktx:$fragment",

dependencies_groups.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -213,6 +213,7 @@ ext.groups = [
213213
'org.jitsi',
214214
'org.json',
215215
'org.jsoup',
216+
'org.jspecify',
216217
'org.junit',
217218
'org.junit.jupiter',
218219
'org.junit.platform',
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Main changes in this version: support room v12.
2+
Full changelog: https://github.com/element-hq/element-android/releases

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,4 @@ signing.element.nightly.keyPassword=Secret
4242

4343
# Customise the Lint version to use a more recent version than the one bundled with AGP
4444
# https://googlesamples.github.io/android-custom-lint-rules/usage/newer-lint.md.html
45-
android.experimental.lint.version=8.6.0-alpha08
45+
android.experimental.lint.version=8.12.0-alpha08

gradle/wrapper/gradle-wrapper.jar

311 Bytes
Binary file not shown.

gradle/wrapper/gradle-wrapper.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionSha256Sum=f8b4f4772d302c8ff580bc40d0f56e715de69b163546944f787c87abf209c961
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-all.zip
3+
distributionSha256Sum=bd71102213493060956ec229d946beee57158dbd89d0e62b91bca0fa2c5f3531
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-bin.zip
55
networkTimeout=10000
66
validateDistributionUrl=true
77
zipStoreBase=GRADLE_USER_HOME

0 commit comments

Comments
 (0)