From a27273c84ed37349d5b7c94166a622ee423dee0f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 1 Sep 2026 15:21:35 +0000 Subject: [PATCH] chore(deps): Bump the gradle group in /sdk/android with 4 updates Bumps the gradle group in /sdk/android with 4 updates: androidx.appcompat:appcompat, [com.squareup.okhttp3:okhttp](https://github.com/lysine-dev/okhttp), [com.squareup.okhttp3:mockwebserver](https://github.com/lysine-dev/okhttp) and com.android.library. Updates `androidx.appcompat:appcompat` from 1.7.0 to 1.8.0 Updates `com.squareup.okhttp3:okhttp` from 5.4.0 to 5.5.0 - [Changelog](https://github.com/lysine-dev/okhttp/blob/main/CHANGELOG.md) - [Commits](https://github.com/lysine-dev/okhttp/compare/parent-5.4.0...parent-5.5.0) Updates `com.squareup.okhttp3:mockwebserver` from 5.4.0 to 5.5.0 - [Changelog](https://github.com/lysine-dev/okhttp/blob/main/CHANGELOG.md) - [Commits](https://github.com/lysine-dev/okhttp/compare/parent-5.4.0...parent-5.5.0) Updates `com.android.library` from 9.3.1 to 9.4.0 --- updated-dependencies: - dependency-name: androidx.appcompat:appcompat dependency-version: 1.8.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gradle - dependency-name: com.squareup.okhttp3:okhttp dependency-version: 5.5.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gradle - dependency-name: com.squareup.okhttp3:mockwebserver dependency-version: 5.5.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gradle - dependency-name: com.android.library dependency-version: 9.4.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gradle ... Signed-off-by: dependabot[bot] --- sdk/android/build.gradle.kts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sdk/android/build.gradle.kts b/sdk/android/build.gradle.kts index 3f645788..70b4dba2 100644 --- a/sdk/android/build.gradle.kts +++ b/sdk/android/build.gradle.kts @@ -1,7 +1,7 @@ // XID Android SDK -- build.gradle.kts // MIT plugins { - id("com.android.library") version "9.3.1" + id("com.android.library") version "9.4.0" id("org.jetbrains.kotlin.android") version "2.4.10" id("org.jetbrains.kotlin.plugin.serialization") version "2.4.10" id("maven-publish") @@ -50,7 +50,7 @@ android { dependencies { // Android platform core implementation("androidx.core:core-ktx:1.19.0") - implementation("androidx.appcompat:appcompat:1.7.0") + implementation("androidx.appcompat:appcompat:1.8.0") // Chrome Custom Tabs -- authorization browser session (PKCE S256 flow) implementation("androidx.browser:browser:1.10.0") @@ -65,7 +65,7 @@ dependencies { implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.11.0") // HTTP -- OkHttp (supports certificate pinning) - implementation("com.squareup.okhttp3:okhttp:5.4.0") + implementation("com.squareup.okhttp3:okhttp:5.5.0") // JSON -- Kotlinx Serialization (KMP-friendly, no reflection) implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.11.0") @@ -76,7 +76,7 @@ dependencies { // Unit tests (JVM, no device required) testImplementation("junit:junit:4.13.2") testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.11.0") - testImplementation("com.squareup.okhttp3:mockwebserver:5.4.0") + testImplementation("com.squareup.okhttp3:mockwebserver:5.5.0") // Instrumented tests androidTestImplementation("androidx.test.ext:junit:1.3.0")