- Bump Exoplayer to 2.10.4 - Remove deprecated usages of Exoplayer methdos - Add `ReactExoplayerConfig` as extension points to configure the Exoplayer instance
14 lines
411 B
Java
14 lines
411 B
Java
package com.brentvatne.exoplayer;
|
|
|
|
import com.google.android.exoplayer2.upstream.DefaultBandwidthMeter;
|
|
import com.google.android.exoplayer2.upstream.LoadErrorHandlingPolicy;
|
|
|
|
/**
|
|
* Extension points to configure the Exoplayer instance
|
|
*/
|
|
public interface ReactExoplayerConfig {
|
|
LoadErrorHandlingPolicy buildLoadErrorHandlingPolicy(int minLoadRetryCount);
|
|
|
|
DefaultBandwidthMeter getBandwidthMeter();
|
|
}
|