Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
src/main/ | 03-May-2024 | - | 201 | 118 | ||
README.md | D | 03-May-2024 | 743 | 23 | 14 | |
build.gradle | D | 03-May-2024 | 1.5 KiB | 51 | 43 |
README.md
1# ExoPlayer WorkManager extension 2 3This extension provides a Scheduler implementation which uses [WorkManager][]. 4 5[WorkManager]: https://developer.android.com/topic/libraries/architecture/workmanager.html 6 7## Getting the extension 8 9The easiest way to use the extension is to add it as a gradle dependency: 10 11```gradle 12implementation 'com.google.android.exoplayer:extension-workmanager:2.X.X' 13``` 14 15where `2.X.X` is the version, which must match the version of the ExoPlayer 16library being used. 17 18Alternatively, you can clone the ExoPlayer repository and depend on the module 19locally. Instructions for doing this can be found in ExoPlayer's 20[top level README][]. 21 22[top level README]: https://github.com/google/ExoPlayer/blob/release-v2/README.md 23