From 017633e3f5437bba3581de323a3163a7c19fca4f Mon Sep 17 00:00:00 2001 From: Derek Markell Date: Sat, 23 Aug 2025 09:20:06 -0400 Subject: [PATCH] Fix installation docs --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index eba77d1..2134742 100644 --- a/README.md +++ b/README.md @@ -14,10 +14,10 @@ A small Android library for representing and resolving text at the right time an Add the dependencies to your `build.gradle`: ```kotlin dependencies { - implementation("io.github.dkmarkell.textresource:core:") + implementation("io.github.dkmarkell:textresource-core:") // If you use Compose: - implementation("io.github.dkmarkell.textresource:compose:") + implementation("io.github.dkmarkell:textresource-compose:") } ``` @@ -26,7 +26,7 @@ dependencies { ```kotlin // build.gradle.kts (module where your tests run) dependencies { - testImplementation("io.github.dkmarkell.textresource:textresource-test:") + testImplementation("io.github.dkmarkell:textresource-test:") testImplementation("org.robolectric:robolectric:") }