40 lines
924 B
Kotlin
40 lines
924 B
Kotlin
dependencies {
|
|
implementation("androidx.legacy:legacy-support-v4:1.0.0")
|
|
implementation("com.google.android.material:material:1.4.0")
|
|
implementation("androidx.recyclerview:recyclerview:1.2.1")
|
|
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.1")
|
|
}
|
|
// use an integer for version numbers
|
|
version = 1
|
|
|
|
cloudstream {
|
|
// All of these properties are optional, you can safely remove them
|
|
description = "Sflix"
|
|
authors = listOf("Mnemosyne")
|
|
|
|
/**
|
|
* Status int as the following:
|
|
* 0: Down
|
|
* 1: Ok
|
|
* 2: Slow
|
|
* 3: Beta only
|
|
* */
|
|
status = 1
|
|
tvTypes = listOf(
|
|
"Anime",
|
|
"TvSeries",
|
|
"Movie",
|
|
)
|
|
requiresResources = true
|
|
language = "en"
|
|
|
|
// random cc logo i found
|
|
iconUrl = "https://upload.wikimedia.org/wikipedia/commons/2/2f/Korduene_Logo.png"
|
|
}
|
|
|
|
android {
|
|
buildFeatures {
|
|
viewBinding = true
|
|
}
|
|
}
|