In the next step you'll learn more about embedding the player in Basic Explanation guide.
StormPlayer is a complete video player based on Android StormLibrary. You can modify it according to your needs. The player can be added in two ways:
                                    
allprojects {
    repositories {
        …
        maven { url 'https://jitpack.io' }
    }
}
                                
                            
                                    
implementation 'com.github.StormStreaming:stormlibrary-android:vx.y.z'
implementation 'com.github.StormStreaming:stormplayer-android:vx.y.z'
                                
                            
                                    
android {
    defaultConfig {
        ...
        minSdkVersion 21
        multiDexEnabled true
    }
    ...
    compileOptions {
        sourceCompatibility = '1.8'
        targetCompatibility = '1.8'
    }
}
                                
                            
                                    
# Project-wide Gradle settings.
android.useAndroidX=true
android.enableJetifier=true
                                
                            Please remember to install Android StormLibrary first.
Installation guide - step by step
                            
                        
                            
                        
                            
                        
                            
                        
                            
                        
                            
                        
                                    
android {
    defaultConfig {
        ...
        minSdkVersion 21
        multiDexEnabled true
    }
    ...
    compileOptions {
        sourceCompatibility = '1.8'
        targetCompatibility = '1.8'
    }
}
                                
                            
                                    
# Project-wide Gradle settings.
android.useAndroidX=true
android.enableJetifier=true
                                
                            Create a free ticket and our support team will provide you necessary assistance.