Skip to content
This repository was archived by the owner on Dec 19, 2025. It is now read-only.
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
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ import com.lagradost.cloudstream3.newAnimeSearchResponse
import com.lagradost.cloudstream3.newHomePageResponse
import com.lagradost.cloudstream3.newMovieLoadResponse
import com.lagradost.cloudstream3.toRatingInt
import com.lagradost.cloudstream3.utils.AppUtils
import com.lagradost.cloudstream3.utils.AppUtils.tryParseJson
import com.lagradost.cloudstream3.utils.ExtractorLink
import com.lagradost.cloudstream3.utils.M3u8Helper
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
package com.lagradost.models

import com.google.gson.annotations.SerializedName

data class PlayerJson (

val title : String,
Expand Down
32 changes: 32 additions & 0 deletions UATuTFunProvider/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
// use an integer for version numbers
version = 1

dependencies {
// https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind
implementation("com.fasterxml.jackson.core:jackson-databind:2.19.1")
implementation("com.fasterxml.jackson.module:jackson-module-kotlin:2.19.1")
// https://mvnrepository.com/artifact/junit/junit
testImplementation("junit:junit:4.13.2")
// https://mvnrepository.com/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-test
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.10.1")
testImplementation(kotlin("test"))
}

cloudstream {
language = "uk"
// All of these properties are optional, you can safely remove them

description = "uatut.fun - практичний та ексклюзивний кінотеатр для перегляду відео у комфортній обстановці."
authors = listOf("CakesTwix")

/**
* Status int as the following:
* 0: Down
* 1: Ok
* 2: Slow
* 3: Beta only
* */
status = 2 // will be 3 if unspecified

iconUrl = "https://www.google.com/s2/favicons?domain=uatut.fun&sz=%size%"
}
2 changes: 2 additions & 0 deletions UATuTFunProvider/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest package="com.lagradost"/>
Loading
Loading