Skip to content

Commit

Permalink
Publish MIDI decoder module on Maven repository
Browse files Browse the repository at this point in the history
Issue: #734

#minor-release

PiperOrigin-RevId: 574182702
(cherry picked from commit 61770f8)
  • Loading branch information
christosts authored and rohitjoins committed Oct 23, 2023
1 parent 29846d0 commit ee83baf
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
3 changes: 3 additions & 0 deletions RELEASENOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,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:
Expand Down
2 changes: 1 addition & 1 deletion libraries/decoder_midi/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 6 additions & 0 deletions libraries/decoder_midi/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'

0 comments on commit ee83baf

Please sign in to comment.