mirror of
https://github.com/CappielloAntonio/tempo.git
synced 2026-01-30 06:12:07 +00:00
Revert exoplayer upgrade
This commit is contained in:
@@ -78,7 +78,7 @@ dependencies {
|
||||
implementation "com.github.woltapp:blurhash:f41a23cc50"
|
||||
|
||||
// Exoplayer
|
||||
implementation 'com.google.android.exoplayer:exoplayer:2.13.3'
|
||||
implementation 'com.google.android.exoplayer:exoplayer:2.12.2'
|
||||
|
||||
annotationProcessor 'com.github.bumptech.glide:compiler:4.11.0'
|
||||
annotationProcessor "androidx.room:room-compiler:2.2.6"
|
||||
|
||||
@@ -80,7 +80,7 @@ public class MultiPlayer implements Playback {
|
||||
MediaSourceFactory mediaSourceFactory = new UnknownMediaSourceFactory(buildDataSourceFactory());
|
||||
exoPlayer = new SimpleExoPlayer.Builder(context).setMediaSourceFactory(mediaSourceFactory).build();
|
||||
// TODO: “Player is accessed on the wrong thread” suppressed
|
||||
exoPlayer.setThrowsWhenUsingWrongThread(false);
|
||||
// exoPlayer.setThrowsWhenUsingWrongThread(false);
|
||||
|
||||
exoPlayer.addListener(eventListener);
|
||||
exoPlayer.prepare();
|
||||
|
||||
@@ -2,7 +2,6 @@ package com.cappielloantonio.play.service
|
||||
|
||||
import com.google.android.exoplayer2.MediaItem
|
||||
import com.google.android.exoplayer2.drm.DrmSessionManager
|
||||
import com.google.android.exoplayer2.drm.DrmSessionManagerProvider
|
||||
import com.google.android.exoplayer2.extractor.DefaultExtractorsFactory
|
||||
import com.google.android.exoplayer2.source.MediaSource
|
||||
import com.google.android.exoplayer2.source.MediaSourceFactory
|
||||
@@ -55,10 +54,6 @@ class UnknownMediaSourceFactory(dataSourceFactory: DataSource.Factory) : MediaSo
|
||||
return sourceFactory.createMediaSource(mediaItem)
|
||||
}
|
||||
|
||||
override fun setDrmSessionManagerProvider(drmSessionManagerProvider: DrmSessionManagerProvider?): MediaSourceFactory {
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
|
||||
private suspend fun httpGet(url: String?): String? {
|
||||
return withContext(Dispatchers.IO) {
|
||||
val request = URL(url)
|
||||
|
||||
Reference in New Issue
Block a user