Skip to content

Commit 61770f8

Browse files
christostscopybara-github
authored andcommitted
Publish MIDI decoder module on Maven repository
Issue: androidx#734 #minor-release PiperOrigin-RevId: 574182702
1 parent 680eed5 commit 61770f8

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

RELEASENOTES.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,9 @@
5252
* Smooth Streaming Extension:
5353
* RTSP Extension:
5454
* Decoder Extensions (FFmpeg, VP9, AV1, MIDI, etc.):
55+
* Fix bug publishing MIDI decoder artifact to Maven repository. The
56+
artifact is renamed to `media3-exoplayer-midi`
57+
([#734](https://github.com/androidx/media/issues/734)).
5558
* Leanback extension:
5659
* Cast Extension:
5760
* Test Utilities:

libraries/decoder_midi/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ MIDI commands and render the PCM output.
99
The easiest way to get the module is to add it as a gradle dependency:
1010

1111
```gradle
12-
implementation 'androidx.media3:lib-decoder-midi:1.X.X'
12+
implementation 'androidx.media3:media3-exoplayer-midi:1.X.X'
1313
```
1414

1515
where `1.X.X` is the version, which must match the version of the other media

libraries/decoder_midi/build.gradle

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,3 +34,9 @@ dependencies {
3434
testImplementation project(modulePrefix + 'test-data')
3535
testImplementation 'org.robolectric:robolectric:' + robolectricVersion
3636
}
37+
38+
ext {
39+
releaseArtifactId = 'media3-exoplayer-midi'
40+
releaseName = 'Media3 MIDI decoder module'
41+
}
42+
apply from: '../../publish.gradle'

0 commit comments

Comments
 (0)