Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .changeset/cute-bugs-do.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
"evervault-android": minor
---

Add support for Kotlin 2.1

- Downgrade the ktor dependency to 3.2.4, which supports Kotlin 2.1
- Change Kotlin version dependencies to 2.1
104 changes: 56 additions & 48 deletions evervault-cages/gradle.lockfile

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions evervault-core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -96,13 +96,13 @@ dependencies {
testImplementation(kotlin("test"))

// Explicitly specify kotlin-stdlib-common version to ensure all configurations (including Android test)
// are properly locked. Version must match the Kotlin plugin version in settings.gradle.kts (2.0.21).
// are properly locked. Version must match the Kotlin plugin version in settings.gradle.kts (2.1.20).
// This resolves the issue where debugAndroidTestRuntimeClasspath isn't captured during lockfile generation.
implementation("org.jetbrains.kotlin:kotlin-stdlib-common:2.2.21")
implementation("org.jetbrains.kotlin:kotlin-stdlib-common:2.1.20")

// ktor
implementation("io.ktor:ktor-client-core:3.4.0")
implementation("io.ktor:ktor-client-okhttp:3.4.0")
implementation("io.ktor:ktor-client-core:3.2.4")
Comment thread
matt-evervault marked this conversation as resolved.
implementation("io.ktor:ktor-client-okhttp:3.2.4")
implementation("org.bouncycastle:bcprov-jdk15to18:1.84")

// JSON
Expand Down
321 changes: 88 additions & 233 deletions evervault-core/gradle.lockfile

Large diffs are not rendered by default.

122 changes: 62 additions & 60 deletions evervault-enclaves/gradle.lockfile

Large diffs are not rendered by default.

121 changes: 64 additions & 57 deletions evervault-inputs/gradle.lockfile

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions sampleapplication/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,8 @@ dependencies {
androidTestImplementation("androidx.compose.ui:ui-test-junit4")
androidTestImplementation("androidx.test.uiautomator:uiautomator:2.3.0-alpha03")
// Explicitly specify kotlin-stdlib-common version to ensure debugAndroidTestRuntimeClasspath is properly locked.
// Version must match the Kotlin plugin version in settings.gradle.kts (2.2.21).
androidTestImplementation("org.jetbrains.kotlin:kotlin-stdlib-common:2.2.21")
// Version must match the Kotlin plugin version in settings.gradle.kts (2.1.20).
androidTestImplementation("org.jetbrains.kotlin:kotlin-stdlib-common:2.1.20")
debugImplementation("androidx.compose.ui:ui-tooling")
debugImplementation("androidx.compose.ui:ui-test-manifest")
}
117 changes: 60 additions & 57 deletions sampleapplication/gradle.lockfile

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ pluginManagement {
plugins {
id("com.android.application") version "8.13.2" apply false
id("com.android.library") version "8.13.2" apply false
id("org.jetbrains.kotlin.android") version "2.2.21" apply false
id("org.jetbrains.kotlin.plugin.serialization") version "2.2.21" apply false
id("org.jetbrains.kotlin.plugin.compose") version "2.2.21" apply false
id("org.jetbrains.kotlin.android") version "2.1.20" apply false
id("org.jetbrains.kotlin.plugin.serialization") version "2.1.20" apply false
id("org.jetbrains.kotlin.plugin.compose") version "2.1.20" apply false
}
}

Expand Down
Loading