From 2d979226e4b7485011414820e15a313b318470d0 Mon Sep 17 00:00:00 2001 From: Paul-Hubert Cannesson Date: Mon, 23 Oct 2023 16:23:56 +0200 Subject: [PATCH] switch compose tooling dependency to debugImplementation --- lib/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/build.gradle b/lib/build.gradle index c5a3a24..a580436 100644 --- a/lib/build.gradle +++ b/lib/build.gradle @@ -54,7 +54,7 @@ dependencies { implementation "androidx.compose.ui:ui" implementation "androidx.compose.foundation:foundation" - implementation "androidx.compose.ui:ui-tooling" + debugImplementation "androidx.compose.ui:ui-tooling" androidTestImplementation "androidx.compose.ui:ui-test-junit4" }