From d07aa3825a8c58229b213ffa8f9ad0ea4d02c193 Mon Sep 17 00:00:00 2001 From: Oussama Hassine Date: Wed, 12 Jun 2024 16:54:42 +0200 Subject: [PATCH] chore: add compose-runtime to Benchmark module (#3093) --- benchmark/build.gradle.kts | 1 + gradle/libs.versions.toml | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/benchmark/build.gradle.kts b/benchmark/build.gradle.kts index 57927cf06b6..7cb6e9e8a9d 100644 --- a/benchmark/build.gradle.kts +++ b/benchmark/build.gradle.kts @@ -28,6 +28,7 @@ dependencies { implementation(libs.androidx.core) implementation(libs.androidx.appcompat) implementation(libs.material) + implementation(libs.androidx.compose.runtime) testImplementation(libs.junit4) androidTestImplementation(libs.androidx.test.extJunit) diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 430e97bd4ff..7eb6659e4cb 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -42,6 +42,7 @@ androidx-workManager = "2.9.0" androidx-browser = "1.8.0" androidx-biometric = "1.1.0" androidx-startup = "1.1.1" +androidx-compose-runtime = "1.6.7" # Compose composeBom = "2024.05.00" @@ -85,7 +86,7 @@ leakCanary = "2.14" ksp = "1.9.23-1.0.20" # Benchmark -benchmark-macro-junit4 = "1.2.4" +benchmark-macro-junit4 = "1.2.0-beta03" profileinstaller = "1.3.1" # Testing @@ -180,6 +181,7 @@ androidx-splashscreen = { module = "androidx.core:core-splashscreen", version.re androidx-profile-installer = { group = "androidx.profileinstaller", name = "profileinstaller", version.ref = "profileinstaller" } androidx-biometric = { group = "androidx.biometric", name = "biometric", version.ref = "androidx-biometric" } androidx-startup = { group = "androidx.startup", name = "startup-runtime", version.ref = "androidx-startup" } +androidx-compose-runtime = { group = "androidx.compose.runtime", name = "runtime", version.ref = "androidx-compose-runtime" } # Dependency Injection hilt-android = { module = "com.google.dagger:hilt-android", version.ref = "hilt" }