1# UI module 2 3Provides UI components for media playback. 4 5## Getting the module 6 7The easiest way to use the module is to add it as a gradle dependency: 8 9```gradle 10implementation 'com.google.android.exoplayer:exoplayer-ui:2.X.X' 11``` 12 13where `2.X.X` is the version, which must match the version of the other media 14modules being used. 15 16Alternatively, you can clone this GitHub project and depend on the module 17locally. Instructions for doing this can be found in the [top level README][]. 18 19[top level README]: https://github.com/google/ExoPlayer/blob/release-v2/README.md 20 21## Links 22 23* [Developer Guide][] 24* [Javadoc][] 25 26[Developer Guide]: https://exoplayer.dev/ui-components.html 27[Javadoc]: https://exoplayer.dev/doc/reference/index.html 28