mirror of
https://github.com/recloudstream/cloudstream.git
synced 2024-08-15 01:53:11 +00:00
Update dependencies, lets hope it does not fuck up anything
This commit is contained in:
parent
b79e2d768f
commit
514e250d68
4 changed files with 12 additions and 10 deletions
|
@ -39,13 +39,13 @@ android {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
compileSdk = 31
|
compileSdk = 33
|
||||||
buildToolsVersion = "30.0.3"
|
buildToolsVersion = "30.0.3"
|
||||||
|
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
applicationId = "com.lagradost.cloudstream3"
|
applicationId = "com.lagradost.cloudstream3"
|
||||||
minSdk = 21
|
minSdk = 21
|
||||||
targetSdk = 30
|
targetSdk = 33
|
||||||
|
|
||||||
versionCode = 55
|
versionCode = 55
|
||||||
versionName = "3.2.3"
|
versionName = "3.2.3"
|
||||||
|
@ -155,10 +155,10 @@ dependencies {
|
||||||
// implementation("androidx.leanback:leanback-paging:1.1.0-alpha09")
|
// implementation("androidx.leanback:leanback-paging:1.1.0-alpha09")
|
||||||
|
|
||||||
// Exoplayer
|
// Exoplayer
|
||||||
implementation("com.google.android.exoplayer:exoplayer:2.18.1")
|
implementation("com.google.android.exoplayer:exoplayer:2.18.2")
|
||||||
implementation("com.google.android.exoplayer:extension-cast:2.18.1")
|
implementation("com.google.android.exoplayer:extension-cast:2.18.2")
|
||||||
implementation("com.google.android.exoplayer:extension-mediasession:2.18.1")
|
implementation("com.google.android.exoplayer:extension-mediasession:2.18.2")
|
||||||
implementation("com.google.android.exoplayer:extension-okhttp:2.18.1")
|
implementation("com.google.android.exoplayer:extension-okhttp:2.18.2")
|
||||||
|
|
||||||
//implementation("com.google.android.exoplayer:extension-leanback:2.14.0")
|
//implementation("com.google.android.exoplayer:extension-leanback:2.14.0")
|
||||||
|
|
||||||
|
@ -190,7 +190,7 @@ dependencies {
|
||||||
// Networking
|
// Networking
|
||||||
// implementation("com.squareup.okhttp3:okhttp:4.9.2")
|
// implementation("com.squareup.okhttp3:okhttp:4.9.2")
|
||||||
// implementation("com.squareup.okhttp3:okhttp-dnsoverhttps:4.9.1")
|
// implementation("com.squareup.okhttp3:okhttp-dnsoverhttps:4.9.1")
|
||||||
implementation("com.github.Blatzar:NiceHttp:0.3.5")
|
implementation("com.github.Blatzar:NiceHttp:0.4.0")
|
||||||
// To fix SSL fuckery on android 9
|
// To fix SSL fuckery on android 9
|
||||||
implementation("org.conscrypt:conscrypt-android:2.2.1")
|
implementation("org.conscrypt:conscrypt-android:2.2.1")
|
||||||
// Util to skip the URI file fuckery 🙏
|
// Util to skip the URI file fuckery 🙏
|
||||||
|
|
|
@ -16,9 +16,11 @@ import androidx.appcompat.app.AlertDialog
|
||||||
import androidx.appcompat.app.AppCompatActivity
|
import androidx.appcompat.app.AppCompatActivity
|
||||||
import androidx.core.view.isVisible
|
import androidx.core.view.isVisible
|
||||||
import androidx.fragment.app.FragmentActivity
|
import androidx.fragment.app.FragmentActivity
|
||||||
import androidx.navigation.*
|
import androidx.navigation.NavController
|
||||||
|
import androidx.navigation.NavDestination
|
||||||
import androidx.navigation.NavDestination.Companion.hierarchy
|
import androidx.navigation.NavDestination.Companion.hierarchy
|
||||||
import androidx.navigation.NavGraph.Companion.findStartDestination
|
import androidx.navigation.NavGraph.Companion.findStartDestination
|
||||||
|
import androidx.navigation.NavOptions
|
||||||
import androidx.navigation.fragment.NavHostFragment
|
import androidx.navigation.fragment.NavHostFragment
|
||||||
import androidx.navigation.ui.setupWithNavController
|
import androidx.navigation.ui.setupWithNavController
|
||||||
import androidx.preference.PreferenceManager
|
import androidx.preference.PreferenceManager
|
||||||
|
|
|
@ -69,7 +69,7 @@ class EasterEggMonke : AppCompatActivity() {
|
||||||
set.duration = (Math.random() * 1500 + 2500).toLong()
|
set.duration = (Math.random() * 1500 + 2500).toLong()
|
||||||
|
|
||||||
set.addListener(object : AnimatorListenerAdapter() {
|
set.addListener(object : AnimatorListenerAdapter() {
|
||||||
override fun onAnimationEnd(animation: Animator?) {
|
override fun onAnimationEnd(animation: Animator) {
|
||||||
frame.removeView(newStar)
|
frame.removeView(newStar)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
|
@ -439,7 +439,7 @@ public class NonFinalTextRenderer extends BaseRenderer implements Callback {
|
||||||
).collect(Collectors.toList());
|
).collect(Collectors.toList());
|
||||||
|
|
||||||
output.onCues(fixedCues);
|
output.onCues(fixedCues);
|
||||||
output.onCues(new CueGroup(fixedCues));
|
output.onCues(new CueGroup(fixedCues, 0L));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue