Skip to content

AliAzaz/SampleExoPlayer

Repository files navigation

How to deal with ExoPlayer 📹

  • ExoPlayer is an application level media player for Android.

Get the description and implementation of ExoPlayer from HERE

Getting Started

Firstly, work in project.gradle file:

allprojects {
     repositories {
         // Add these lines
         google()
         jcenter()
     }
 }

Secondly, enable JAVA_8 support in app.gradle file:

android {

     /*Add Compile options in following block*/
     compileOptions {
         sourceCompatibility JavaVersion.VERSION_1_8
         targetCompatibility JavaVersion.VERSION_1_8
     }
 
 }

Thirdly, implement dependency in app.gradle:

implementation 'com.google.android.exoplayer:exoplayer:2.9.6'

Congoo!!👌 we done the basis settings of ExoPlayer.

You can find the implementation from:

About

Implementation of ExoPlayer, an application level media player for Android

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages