Skip to content

Commit 92d493c

Browse files
Bump org.jetbrains.kotlin.android from 2.1.10 to 2.1.20 (#2989)
* Bump org.jetbrains.kotlin.android from 2.1.10 to 2.1.20 Bumps [org.jetbrains.kotlin.android](https://github.com/JetBrains/kotlin) from 2.1.10 to 2.1.20. - [Release notes](https://github.com/JetBrains/kotlin/releases) - [Changelog](https://github.com/JetBrains/kotlin/blob/master/ChangeLog.md) - [Commits](JetBrains/kotlin@v2.1.10...v2.1.20) --- updated-dependencies: - dependency-name: org.jetbrains.kotlin.android dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * Modified dependabot.yml. Updated other group dependencies. * SearchMessagesGmailApiFlowTest.testSearchMessages() when nextPageToken is null --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: denbond7 <denbond7@gmail.com>
1 parent 102699a commit 92d493c

4 files changed

Lines changed: 11 additions & 5 deletions

File tree

.github/dependabot.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,10 @@ updates:
4242
applies-to: version-updates
4343
patterns:
4444
- "com.squareup.okhttp3*"
45+
46+
kotlin:
47+
applies-to: version-updates
48+
patterns:
49+
- "org.jetbrains.kotlin*"
50+
- "com.google.devtools.ksp*"
4551
open-pull-requests-limit: 10

FlowCrypt/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -406,7 +406,7 @@ dependencies {
406406
testImplementation("com.shazam:shazamcrest:0.11")
407407
testImplementation("org.robolectric:robolectric:4.14.1")
408408
//we need it to test Parcelable implementation
409-
testImplementation("org.jetbrains.kotlin:kotlin-reflect:2.1.10")
409+
testImplementation("org.jetbrains.kotlin:kotlin-reflect:2.1.20")
410410
testImplementation("junit:junit:4.13.2")
411411
testImplementation("androidx.room:room-testing:2.6.1")
412412
testImplementation("io.github.classgraph:classgraph:4.8.179")

FlowCrypt/src/main/java/com/flowcrypt/email/jetpack/viewmodel/MessagesViewModel.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -703,7 +703,7 @@ class MessagesViewModel(application: Application) : AccountViewModel(application
703703
)
704704
)
705705

706-
val nextPageToken: String
706+
val nextPageToken: String?
707707
val gmailThreadInfoList: List<GmailThreadInfo>
708708
val messages = if (accountEntity.useConversationMode) {
709709
val threadsResponse = GmailApiHelper.loadThreads(

build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77

88
plugins {
99
id("com.android.application") version "8.9.0" apply false
10-
id("org.jetbrains.kotlin.android") version "2.1.10" apply false
10+
id("org.jetbrains.kotlin.android") version "2.1.20" apply false
1111
id("androidx.navigation.safeargs.kotlin") version "2.8.9" apply false
1212
id("com.starter.easylauncher") version "6.4.0" apply false
13-
id("org.jetbrains.kotlin.plugin.parcelize") version "2.1.10" apply false
14-
id("com.google.devtools.ksp") version "2.1.10-1.0.31" apply false
13+
id("org.jetbrains.kotlin.plugin.parcelize") version "2.1.20" apply false
14+
id("com.google.devtools.ksp") version "2.1.20-1.0.31" apply false
1515
id("org.ajoberstar.grgit") version "5.3.0" apply false
1616
}
1717

0 commit comments

Comments
 (0)