diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 735b0012a..bed0264b4 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -39,7 +39,7 @@ room = "2.8.4" robolectric = "4.16.1" roborazzi = "1.70.0" leakcanary = "2.14" -compose-preview-plugin = "0.19.25" +compose-preview-plugin = "0.19.34" module-graph = "0.13.0" retrofit = "3.0.0" okhttp = "5.4.0" diff --git a/native/rust/Cargo.lock b/native/rust/Cargo.lock index 8d056fcd5..b9ddacfeb 100644 --- a/native/rust/Cargo.lock +++ b/native/rust/Cargo.lock @@ -7718,9 +7718,9 @@ checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e" [[package]] name = "similar" -version = "3.1.1" +version = "3.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e6505efef05804732ed8a3f2d4f279429eb485bd69d5b0cc6b19cc02005cda16" +checksum = "85ee016af5d736b69fc89e19254540fa4b5f5492853fb5503920f084011c78b6" dependencies = [ "bstr", ] diff --git a/testing/socket-bind-probe/build.gradle.kts b/testing/socket-bind-probe/build.gradle.kts index 4565e6b9a..6e5f85fc3 100644 --- a/testing/socket-bind-probe/build.gradle.kts +++ b/testing/socket-bind-probe/build.gradle.kts @@ -10,7 +10,10 @@ extensions.configure { externalNativeBuild { cmake { path = file("src/main/cpp/CMakeLists.txt") - version = "3.22.1" + // Align with the shared `ripdpi.nativeCmakeVersion` pin (gradle.properties) + // used by every other native module via ripdpi.android.rust-native; this + // module previously hardcoded an older, drifted CMake version. + version = providers.gradleProperty("ripdpi.nativeCmakeVersion").get() } } }