Installation
Transcoder is publicly hosted on the Maven Central 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:
kotlindependencies { api("io.deepmedia.community:transcoder-android:LATEST_VERSION") // Or use the legacy coordinates: // api("com.otaliastudios:transcoder:LATEST_VERSION") }
Replace LATEST_VERSION
with the latest version number, 0.11.1.
Snapshots
We regularly push development snapshots of the library at https://s01.oss.sonatype.org/content/repositories/snapshots/
on each push to main. To use snapshots, add the url as a maven repository and depend on latest-SNAPSHOT
:
kotlin// settings.gradle.kts pluginManagement { repositories { gradlePluginPortal() maven(url = "https://s01.oss.sonatype.org/content/repositories/snapshots/") } } // build.gradle.kts dependencies { api("io.deepmedia.community:transcoder-android:latest-SNAPSHOT") // Or use the legacy coordinates: // api("com.otaliastudios:transcoder:latest-SNAPSHOT") }
On this page
More
- Free Doc Hosting
- Newsletter