version 1.0.0 #67

Yhdistetty
Seil0 yhdistetty 137 committia lähteestä develop kohteeseen master 2022-10-12 15:36:39 +02:00
2 muutettua tiedostoa jossa 11 lisäystä ja 4 poistoa
Showing only changes of commit de1f19c2b7 - Show all commits

Näytä tiedosto

@ -550,8 +550,11 @@ object Crunchyroll {
return try {
requestGet(playheadsEndpoint, parameters)
}catch (ex: SerializationException) {
Log.e(TAG, "SerializationException in upNextSeries().", ex)
} catch (ex: SerializationException) {
Log.e(TAG, "SerializationException in playheads().", ex)
emptyMap()
} catch (ex: Throwable) {
Log.e(TAG, "Exception in playheads().", ex.cause)
emptyMap()
}
}
@ -571,7 +574,11 @@ object Crunchyroll {
put("playhead", playhead)
}
requestPost(playheadsEndpoint, parameters, json)
try {
requestPost(playheadsEndpoint, parameters, json)
} catch (ex: Throwable) {
Log.e(TAG, "Exception in postPlayheads()", ex.cause)
}
}
/**

Näytä tiedosto

@ -8,7 +8,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.2.0'
classpath 'com.android.tools.build:gradle:7.2.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
// NOTE: Do not place your application dependencies here; they belong