Publish MIDI decoder module on Maven repository

Issue: androidx/media#734

#minor-release

PiperOrigin-RevId: 574182702
This commit is contained in:
christosts 2023-10-17 09:57:13 -07:00 committed by Copybara-Service
parent 680eed52f3
commit 61770f8a61
3 changed files with 10 additions and 1 deletions

View File

@ -52,6 +52,9 @@
* Smooth Streaming Extension:
* RTSP Extension:
* Decoder Extensions (FFmpeg, VP9, AV1, MIDI, etc.):
* Fix bug publishing MIDI decoder artifact to Maven repository. The
artifact is renamed to `media3-exoplayer-midi`
([#734](https://github.com/androidx/media/issues/734)).
* Leanback extension:
* Cast Extension:
* Test Utilities:

View File

@ -9,7 +9,7 @@ MIDI commands and render the PCM output.
The easiest way to get the module is to add it as a gradle dependency:
```gradle
implementation 'androidx.media3:lib-decoder-midi:1.X.X'
implementation 'androidx.media3:media3-exoplayer-midi:1.X.X'
```
where `1.X.X` is the version, which must match the version of the other media

View File

@ -34,3 +34,9 @@ dependencies {
testImplementation project(modulePrefix + 'test-data')
testImplementation 'org.robolectric:robolectric:' + robolectricVersion
}
ext {
releaseArtifactId = 'media3-exoplayer-midi'
releaseName = 'Media3 MIDI decoder module'
}
apply from: '../../publish.gradle'