Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
src/main/ | 03-May-2024 | - | 209 | 111 | ||
README.md | D | 03-May-2024 | 1.1 KiB | 28 | 18 | |
build.gradle | D | 03-May-2024 | 1.5 KiB | 51 | 43 |
README.md
1# ExoPlayer Firebase JobDispatcher extension # 2 3**DEPRECATED - Please use [WorkManager extension][] or [PlatformScheduler][] 4instead.** 5 6This extension provides a Scheduler implementation which uses [Firebase JobDispatcher][]. 7 8[WorkManager extension]: https://github.com/google/ExoPlayer/blob/release-v2/extensions/workmanager/README.md 9[PlatformScheduler]: https://github.com/google/ExoPlayer/blob/release-v2/library/core/src/main/java/com/google/android/exoplayer2/scheduler/PlatformScheduler.java 10[Firebase JobDispatcher]: https://github.com/firebase/firebase-jobdispatcher-android 11 12## Getting the extension ## 13 14The easiest way to use the extension is to add it as a gradle dependency: 15 16```gradle 17implementation 'com.google.android.exoplayer:extension-jobdispatcher:2.X.X' 18``` 19 20where `2.X.X` is the version, which must match the version of the ExoPlayer 21library being used. 22 23Alternatively, you can clone the ExoPlayer repository and depend on the module 24locally. Instructions for doing this can be found in ExoPlayer's 25[top level README][]. 26 27[top level README]: https://github.com/google/ExoPlayer/blob/release-v2/README.md 28