Skip to content
Open
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
4 changes: 2 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ dependencies {
implementation("org.commonmark:commonmark:0.29.0")

// WebSocket server for React UI bridge
implementation("com.squareup.okhttp3:okhttp:4.12.0")
implementation("com.squareup.okhttp3:okhttp:5.4.0")
implementation("org.java-websocket:Java-WebSocket:1.6.0")

// Security: encrypted credential storage for paired device passwords
Expand All @@ -243,7 +243,7 @@ dependencies {
testImplementation(kotlin("test"))
// MockWebServer for AnalyticsServiceTest — version matches the OkHttp
// already on the main classpath (4.12.0).
testImplementation("com.squareup.okhttp3:mockwebserver:4.12.0")
testImplementation("com.squareup.okhttp3:mockwebserver:5.4.0")
// Mockito for stubbing Android Context in SkillScannerTest. Needed because
// SkillScanner takes a Context to read web/data/skill-registry.json from
// app assets — there's no in-memory fake equivalent (unlike SharedPreferences).
Expand Down
Loading