2024-01-16 21:20:08 +00:00
|
|
|
import org.jetbrains.kotlin.konan.properties.Properties
|
|
|
|
|
|
|
|
// use an integer for version numbers
|
2024-01-25 09:57:35 +00:00
|
|
|
version = 3
|
2024-01-16 21:20:08 +00:00
|
|
|
|
|
|
|
android {
|
|
|
|
defaultConfig {
|
|
|
|
val properties = Properties()
|
|
|
|
properties.load(project.rootProject.file("local.properties").inputStream())
|
|
|
|
|
|
|
|
buildConfigField("String", "SUPERSTREAM_FIRST_API", "\"${properties.getProperty("SUPERSTREAM_FIRST_API")}\"")
|
|
|
|
buildConfigField("String", "SUPERSTREAM_SECOND_API", "\"${properties.getProperty("SUPERSTREAM_SECOND_API")}\"")
|
|
|
|
buildConfigField("String", "SUPERSTREAM_THIRD_API", "\"${properties.getProperty("SUPERSTREAM_THIRD_API")}\"")
|
|
|
|
buildConfigField("String", "SUPERSTREAM_FOURTH_API", "\"${properties.getProperty("SUPERSTREAM_FOURTH_API")}\"")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
cloudstream {
|
|
|
|
language = "en"
|
|
|
|
// All of these properties are optional, you can safely remove them
|
|
|
|
|
|
|
|
// description = "Lorem Ipsum"
|
|
|
|
authors = listOf("Blatzar")
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Status int as the following:
|
|
|
|
* 0: Down
|
|
|
|
* 1: Ok
|
|
|
|
* 2: Slow
|
|
|
|
* 3: Beta only
|
|
|
|
* */
|
|
|
|
status = 1 // will be 3 if unspecified
|
|
|
|
tvTypes = listOf(
|
|
|
|
"AsianDrama",
|
|
|
|
"Anime",
|
|
|
|
"TvSeries",
|
|
|
|
"Movie",
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
iconUrl = "https://cdn.discordapp.com/attachments/1109266606292488297/1196694385061003334/icon.png"
|
|
|
|
}
|