Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -323,11 +323,9 @@ tasks.withType<KotlinJvmCompile> {
compilerOptions {
jvmTarget.set(javaTarget)
jvmDefault.set(JvmDefaultMode.ENABLE)
freeCompilerArgs.add("-Xannotation-default-target=param-property")
optIn.addAll(
"com.lagradost.cloudstream3.InternalAPI",
"com.lagradost.cloudstream3.Prerelease",
"kotlin.uuid.ExperimentalUuidApi",
)
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -665,7 +665,6 @@ class HomeFragment : BaseFragment<FragmentHomeBinding>(
fromUI = true
)
showToast(R.string.action_reload, Toast.LENGTH_SHORT)
true
}

homePreviewSearchButton.setOnClickListener { _ ->
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ junit = "4.13.2"
junitKtx = "1.3.0"
junitVersion = "1.3.0"
juniversalchardet = "2.5.0"
kotlinGradlePlugin = "2.3.20"
kotlinGradlePlugin = "2.4.0"
kotlinxAtomicfu = "0.33.0"
kotlinxCollectionsImmutable = "0.4.0"
kotlinxCoroutines = "1.11.0"
Expand Down
1 change: 0 additions & 1 deletion library/api/jvm/library.api
Original file line number Diff line number Diff line change
Expand Up @@ -1185,7 +1185,6 @@ public final class com/lagradost/cloudstream3/Score {
public static final field MAX I
public static final field MAX_ZEROS I
public static final field MIN I
public synthetic fun <init> (ILkotlin/jvm/internal/DefaultConstructorMarker;)V
public fun equals (Ljava/lang/Object;)Z
public fun hashCode ()I
public final fun toByte (I)B
Expand Down
8 changes: 2 additions & 6 deletions library/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,7 @@ kotlin {
jvm()

compilerOptions {
freeCompilerArgs.addAll(
"-Xexpect-actual-classes",
"-Xannotation-default-target=param-property"
)
freeCompilerArgs.add("-Xexpect-actual-classes")
}

sourceSets {
Expand Down Expand Up @@ -91,8 +88,7 @@ kotlin {
@OptIn(org.jetbrains.kotlin.gradle.dsl.abi.ExperimentalAbiValidation::class)
// https://kotlinlang.org/docs/gradle-binary-compatibility-validation.html
abiValidation {
enabled.set(true)
this.filters {
filters {
exclude {
annotatedWith.add("com.lagradost.cloudstream3.Prerelease")
annotatedWith.add("com.lagradost.cloudstream3.InternalAPI")
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
@file:OptIn(ExperimentalUuidApi::class)

package com.lagradost.cloudstream3.utils

import com.fasterxml.jackson.annotation.JsonIgnore
Expand Down Expand Up @@ -332,7 +330,6 @@ import kotlinx.serialization.SerialName
import kotlinx.serialization.Serializable
import kotlinx.serialization.Transient
import kotlin.coroutines.cancellation.CancellationException
import kotlin.uuid.ExperimentalUuidApi
import kotlin.uuid.Uuid
import kotlin.uuid.toJavaUuid
import kotlin.uuid.toKotlinUuid
Expand Down