Skip to content

Commit b3184e1

Browse files
committed
update dependencies
1 parent 8cb6560 commit b3184e1

File tree

4 files changed

+31
-31
lines changed

4 files changed

+31
-31
lines changed

gradle/libs.versions.toml

+24-24
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,45 @@
11
[versions]
2-
agp = "8.4.1"
3-
kotlin = "2.0.0"
2+
agp = "8.9.1"
3+
kotlin = "2.1.20"
44
java = "1.8"
55

6-
sdk-compile = "34"
6+
sdk-compile = "35"
77
sdk-min = "21"
8-
sdk-target = "34"
8+
sdk-target = "35"
99
ndk = "26.3.11579264"
1010

11-
androidx-annotation = "1.8.0"
11+
androidx-annotation = "1.9.1"
1212
androidx-appcompat = "1.7.0"
13-
androidx-constraintlayout = "2.1.4"
14-
androidx-core = "1.13.1"
15-
androidx-fragment = "1.7.1"
13+
androidx-constraintlayout = "2.2.1"
14+
androidx-core = "1.15.0"
15+
androidx-fragment = "1.8.6"
1616
androidx-preference = "1.2.1"
17-
androidx-recyclerview = "1.3.2"
17+
androidx-recyclerview = "1.4.0"
1818
androidx-swiperefreshlayout = "1.1.0"
1919

2020
checkstyle = "10.17.0"
21-
commons-lang = "3.14.0"
22-
commons-text = "1.12.0"
21+
commons-lang = "3.17.0"
22+
commons-text = "1.13.0"
2323
google-flexbox = "3.0.0"
2424
google-material = "1.12.0"
25-
jackson = "2.17.1"
26-
jdk-desugar = "2.0.4"
27-
kotlinx-datetime = "0.6.0"
28-
kotlinx-serialization = "1.6.3"
29-
media3 = "1.3.1"
25+
jackson = "2.18.3"
26+
jdk-desugar = "2.1.5"
27+
kotlinx-datetime = "0.6.2"
28+
kotlinx-serialization = "1.8.0"
29+
media3 = "1.6.0"
3030
netcipher = "2.1.0"
3131
okhttp = "4.12.0"
3232
pmd = "6.55.0"
33-
zstd = "1.5.6-3"
33+
zstd = "1.5.7-2"
3434

3535
junit = "4.13.2"
36-
androidx-test-core = "1.5.0"
37-
androidx-test-espresso = "3.5.1"
38-
androidx-test-rules = "1.5.0"
39-
androidx-test-junit = "1.1.5"
36+
androidx-test-core = "1.6.1"
37+
androidx-test-espresso = "3.6.1"
38+
androidx-test-rules = "1.6.1"
39+
androidx-test-junit = "1.2.1"
4040

41-
compose-bom = "2024.06.00"
42-
androidx-compose-constraintlayout = "1.0.1"
41+
compose-bom = "2025.03.01"
42+
androidx-compose-constraintlayout = "1.1.1"
4343

4444
[libraries]
4545
androidx-annotation = { module = "androidx.annotation:annotation", version.ref = "androidx-annotation" }
@@ -80,7 +80,7 @@ androidx-compose-runtime = { module = "androidx.compose.runtime:runtime" }
8080
androidx-compose-ui = { module = "androidx.compose.ui:ui" }
8181
androidx-compose-ui-graphics = { module = "androidx.compose.ui:ui-graphics" }
8282
androidx-compose-ui-tooling = { module = "androidx.compose.ui:ui-tooling" }
83-
androidx-compose-constraintlayout = { module = "androidx.constraintlayout:constraintlayout-compose", version.ref="androidx-compose-constraintlayout" }
83+
androidx-compose-constraintlayout = { module = "androidx.constraintlayout:constraintlayout-compose", version.ref = "androidx-compose-constraintlayout" }
8484

8585
[plugins]
8686
android-application = { id = "com.android.application", version.ref = "agp" }

gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

src/main/AndroidManifest.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
<activity android:name=".activities.LinkDispatchActivity"
7777
android:exported="true">
7878

79-
<intent-filter>
79+
<intent-filter android:autoVerify="true">
8080
<action android:name="android.intent.action.VIEW" />
8181
<category android:name="android.intent.category.DEFAULT" />
8282
<category android:name="android.intent.category.BROWSABLE" />
@@ -87,7 +87,7 @@
8787
<data android:host="reddit.app.link" />
8888
</intent-filter>
8989

90-
<intent-filter>
90+
<intent-filter android:autoVerify="true">
9191
<action android:name="android.intent.action.VIEW" />
9292
<category android:name="android.intent.category.DEFAULT" />
9393
<category android:name="android.intent.category.BROWSABLE" />
@@ -104,7 +104,7 @@
104104
<data android:pathPrefix="/gallery/" />
105105
</intent-filter>
106106

107-
<intent-filter>
107+
<intent-filter android:autoVerify="true">
108108
<action android:name="android.intent.action.VIEW" />
109109
<category android:name="android.intent.category.DEFAULT" />
110110
<category android:name="android.intent.category.BROWSABLE" />

src/main/java/org/quantumbadger/redreader/common/AndroidCommon.kt

+3-3
Original file line numberDiff line numberDiff line change
@@ -113,11 +113,11 @@ object AndroidCommon {
113113
return PackageInfo(
114114
packageName = name,
115115
versionCode = pInfo.versionCode,
116-
versionName = pInfo.versionName,
117-
ids = pInfo.signatures.map {
116+
versionName = pInfo.versionName.toString(),
117+
ids = pInfo.signatures?.map {
118118
CertificateFactory.getInstance("X509")
119119
.generateCertificate(ByteArrayInputStream(it.toByteArray())).encoded
120-
}
120+
} ?: listOf()
121121
)
122122
}
123123

0 commit comments

Comments
 (0)