Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
src/ | H | 25-Apr-2025 | - | 135,075 | 94,466 | |
README.md | H A D | 25-Apr-2025 | 832 | 32 | 19 | |
build.gradle | H A D | 25-Apr-2025 | 3.1 KiB | 74 | 67 | |
proguard-rules.txt | H A D | 25-Apr-2025 | 3.8 KiB | 60 | 56 |
README.md
1# ExoPlayer module 2 3This module provides `ExoPlayer`, the `Player` implementation for local media 4playback on Android. 5 6## Getting the module 7 8The easiest way to get the module is to add it as a gradle dependency: 9 10```gradle 11implementation 'com.google.android.exoplayer:exoplayer-core:2.X.X' 12``` 13 14where `2.X.X` is the version, which must match the version of the other media 15modules being used. 16 17Alternatively, you can clone this GitHub project and depend on the module 18locally. Instructions for doing this can be found in the [top level README][]. 19 20[top level README]: https://github.com/google/ExoPlayer/blob/release-v2/README.md 21 22## Using the module 23 24The [developer guide](https://exoplayer.dev/hello-world.html) documents how to 25get started. 26 27## Links 28 29* [Javadoc][] 30 31[Javadoc]: https://exoplayer.dev/doc/reference/index.html 32