Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisKruegerDev committed Feb 18, 2024
1 parent 04ba6ea commit ddaed5b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 18 deletions.
19 changes: 3 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
[![Maven Central](https://img.shields.io/maven-central/v/app.moviebase/tmdb-api?label=Maven%20Central)](https://search.maven.org/artifact/app.moviebase/tmdb-api)
![Github Actions](https://github.com/MoviebaseApp/tmdb-api/actions/workflows/build.yml/badge.svg)
[![Issues](https://img.shields.io/github/issues/MoviebaseApp/tmdb-api)](https://github.com/MoviebaseApp/tmdb-api/issues)
[![Kotlin](https://img.shields.io/badge/kotlin-1.9.20-blue.svg?logo=kotlin)](http://kotlinlang.org)
[![Kotlin](https://img.shields.io/badge/kotlin-1.9.22-blue.svg?logo=kotlin)](http://kotlinlang.org)
[![Gradle](https://img.shields.io/badge/Gradle-8-green?style=flat)](https://gradle.org)
[![GitHub License](https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat)](http://www.apache.org/licenses/LICENSE-2.0)
[![GitHub Account](https://img.shields.io/static/v1?label=GitHub&message=chrisnkrueger&color=C51162)](https://github.com/chrisnkrueger)
Expand Down Expand Up @@ -48,7 +48,7 @@ To use the library in a single-platform project, add a dependency.

```kotlin
dependencies {
implementation("app.moviebase:tmdb-api:1.2.0")
implementation("app.moviebase:tmdb-api:1.3.2")
}
```

Expand All @@ -57,24 +57,11 @@ In Kotlin Multiplatform projects, add the dependency to your commonMain source-s
```kotlin
commonMain {
dependencies {
implementation("app.moviebase:tmdb-api:1.2.0")
implementation("app.moviebase:tmdb-api:1.3.2")
}
}
```

### Maven

Add a dependency to the `<dependencies>` element.

```xml
<dependency>
<groupId>app.moviebase</groupId>
<artifactId>tmdb-api</artifactId>
<version>1.2.0</version>
</dependency>
```


## Usage
Most of the library follows the possibilities and naming at the [official documentation](https://www.themoviedb.org/documentation/api). The documentation of the API endpoints is on [version 3](https://developers.themoviedb.org/3) and [version 4](https://developers.themoviedb.org/4).

Expand Down
4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ spotless = "6.23.3"
ben-manes-versions = "0.50.0"
dokka = "1.9.10"
kotlinx-datetime = "0.5.0"
kotlinx-serialization = "1.6.3"
kotlinx-serialization = "1.6.2"
coroutines = "1.8.0"
ktor = "2.38"
ktor = "2.3.8"
ktlint = "1.1.1"
junit-jupiter = "5.10.1"
truth = "1.1.5"
Expand Down

0 comments on commit ddaed5b

Please sign in to comment.