Skip to content

Commit db7f707

Browse files
committed
gradle: bump many deps
Signed-off-by: Jason A. Donenfeld <[email protected]>
1 parent d4c8f1d commit db7f707

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

gradle/libs.versions.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,20 @@ agp = "8.2.0-beta06"
33
kotlin = "1.9.0"
44

55
[libraries]
6-
androidx-activity-ktx = "androidx.activity:activity-ktx:1.7.2"
7-
androidx-annotation = "androidx.annotation:annotation:1.6.0"
6+
androidx-activity-ktx = "androidx.activity:activity-ktx:1.8.0"
7+
androidx-annotation = "androidx.annotation:annotation:1.7.0"
88
androidx-appcompat = "androidx.appcompat:appcompat:1.6.1"
99
androidx-biometric = "androidx.biometric:biometric:1.1.0"
10-
androidx-collection = "androidx.collection:collection:1.2.0"
10+
androidx-collection = "androidx.collection:collection:1.3.0"
1111
androidx-constraintlayout = "androidx.constraintlayout:constraintlayout:2.1.4"
1212
androidx-coordinatorlayout = "androidx.coordinatorlayout:coordinatorlayout:1.2.0"
13-
androidx-core-ktx = "androidx.core:core-ktx:1.10.1"
13+
androidx-core-ktx = "androidx.core:core-ktx:1.12.0"
1414
androidx-datastore-preferences = "androidx.datastore:datastore-preferences:1.0.0"
15-
androidx-fragment-ktx = "androidx.fragment:fragment-ktx:1.5.7"
16-
androidx-lifecycle-runtime-ktx = "androidx.lifecycle:lifecycle-runtime-ktx:2.6.1"
17-
androidx-preference-ktx = "androidx.preference:preference-ktx:1.2.0"
15+
androidx-fragment-ktx = "androidx.fragment:fragment-ktx:1.6.1"
16+
androidx-lifecycle-runtime-ktx = "androidx.lifecycle:lifecycle-runtime-ktx:2.6.2"
17+
androidx-preference-ktx = "androidx.preference:preference-ktx:1.2.1"
1818
desugarJdkLibs = "com.android.tools:desugar_jdk_libs:2.0.3"
19-
google-material = "com.google.android.material:material:1.9.0"
19+
google-material = "com.google.android.material:material:1.10.0"
2020
jsr305 = "com.google.code.findbugs:jsr305:3.0.2"
2121
junit = "junit:junit:4.13.2"
2222
kotlinx-coroutines-android = "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.0"

ui/src/main/java/com/wireguard/android/activity/LogViewerActivity.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ class LogViewerActivity : AppCompatActivity() {
223223
} else {
224224
if (bufferedLogLines.isNotEmpty()) {
225225
bufferedLogLines.last().msg += "\n$line"
226-
} else if (!logLines.isEmpty) {
226+
} else if (!logLines.isEmpty()) {
227227
logLines[logLines.size() - 1].msg += "\n$line"
228228
priorModified = true
229229
}

0 commit comments

Comments
 (0)