Skip to content
Open
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 @@ -313,11 +313,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"
kotlinxCoroutinesCore = "1.11.0"
Expand Down
5 changes: 1 addition & 4 deletions library/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,7 @@ kotlin {
jvm()

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

sourceSets {
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 @@ -318,7 +316,6 @@ import kotlinx.coroutines.ensureActive
import org.jsoup.Jsoup
import java.net.URI
import kotlin.coroutines.cancellation.CancellationException
import kotlin.uuid.ExperimentalUuidApi
import kotlin.uuid.Uuid
import kotlin.uuid.toJavaUuid
import kotlin.uuid.toKotlinUuid
Expand Down