From a0089b6b1bd7b56dfa006a3c290ecbb18f652f61 Mon Sep 17 00:00:00 2001 From: Calvin Liang Date: Wed, 11 Sep 2024 16:48:56 -0700 Subject: [PATCH] add installation steps to README --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index 48dfcaa..94103ea 100644 --- a/README.md +++ b/README.md @@ -66,6 +66,15 @@ or reorderable = { module = "sh.calvin.reorderable:reorderable", version = "2.3.2" } ``` +then + +```kotlin +dependencies { + // ... + implementation(libs.reorderable) +} +``` + ### Gradle If you're using Gradle instead, add the following to your `build.gradle` file: @@ -74,6 +83,7 @@ If you're using Gradle instead, add the following to your `build.gradle` file: ```kotlin dependencies { + // ... implementation("sh.calvin.reorderable:reorderable:2.3.2") } ```