Search code examples
androidexoplayer2.xfacebook-litho

How to add exoplayer in facebook litho for android


I have seen news feed example using fb litho. There is no any example for video play using litho. We want a example like news feed with video play or can you please provide any example or suggestion to add exoplayer in litho.


Solution

  • There is not much difference from adding any other custom view to Litho. You'll need to create a MountSpec for PlayerView and then include that MountSpec as a Component.

    More info about MountSpecs.

    And here is a good example of MountSpec implementation for a ProgressBar: ProgressSpec