Skip to content

Commit

Permalink
Fix install informations
Browse files Browse the repository at this point in the history
  • Loading branch information
natario1 committed Aug 15, 2024
1 parent 26979f8 commit 117288d
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
2 changes: 2 additions & 0 deletions docs/changelog.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ New versions are released through GitHub, so the reference page is the [GitHub R
### 0.11.0

This release focuses on stability and performance, fixing old bugs that were making the library unstable and unreliable.
In addition, the library is now available at new maven coordinates `io.deepmedia.community:transcoder-android`.
The old coordinates will still work and receive updates.

- Enhancement: Revisit transcoding pipeline ([#203](https://github.com/deepmedia/Transcoder/pull/203))
- Enhancement: Allow SpeedTimeInterpolator reuse, thanks to [@vaibhavpandeyvpz](https://github.com/vaibhavpandeyvpz) ([#199](https://github.com/deepmedia/Transcoder/pull/199))
Expand Down
12 changes: 9 additions & 3 deletions docs/install.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,16 @@ title: Install

# Installation

Transcoder is publicly hosted on the [Maven Central](https://repo1.maven.org/maven2/com/otaliastudios/)
Transcoder is publicly hosted on the [Maven Central](https://repo1.maven.org/maven2/io/deepmedia/community/)
repository, where you can download the AAR package. To fetch with Gradle, assuming that `mavenCentral()` is already
one of your repository sources, simply declare a new dependency:

```kotlin
dependencies {
api("com.otaliastudios:transcoder:LATEST_VERSION")
api("io.deepmedia.community:transcoder-android:LATEST_VERSION")

// Or use the legacy coordinates:
// api("com.otaliastudios:transcoder:LATEST_VERSION")
}
```

Expand All @@ -32,6 +35,9 @@ pluginManagement {

// build.gradle.kts
dependencies {
implementation("com.otaliastudios:transcoder:latest-SNAPSHOT")
api("io.deepmedia.community:transcoder-android:latest-SNAPSHOT")

// Or use the legacy coordinates:
// api("com.otaliastudios:transcoder:latest-SNAPSHOT")
}
```

0 comments on commit 117288d

Please sign in to comment.