Name Date Size #Lines LOC

..--

src/H25-Apr-2025-135,07594,466

README.mdH A D25-Apr-2025832 3219

build.gradleH A D25-Apr-20253.1 KiB7467

proguard-rules.txtH A D25-Apr-20253.8 KiB6056

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