Skip to content

Commit

Permalink
add installation steps to README
Browse files Browse the repository at this point in the history
  • Loading branch information
Calvin-LL committed Sep 11, 2024
1 parent ae6980e commit a0089b6
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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")
}
```
Expand Down

0 comments on commit a0089b6

Please sign in to comment.