mirror of
https://github.com/hexated/cloudstream-extensions-hexated.git
synced 2024-08-15 00:03:22 +00:00
36 lines
No EOL
914 B
Text
36 lines
No EOL
914 B
Text
import org.jetbrains.kotlin.konan.properties.Properties
|
|
|
|
// use an integer for version numbers
|
|
version = 29
|
|
|
|
android {
|
|
defaultConfig {
|
|
val properties = Properties()
|
|
properties.load(project.rootProject.file("local.properties").inputStream())
|
|
buildConfigField("String", "ZSHOW_API", "\"${properties.getProperty("ZSHOW_API")}\"")
|
|
}
|
|
}
|
|
|
|
cloudstream {
|
|
language = "id"
|
|
// All of these properties are optional, you can safely remove them
|
|
|
|
description = "Includes: DutaMovie, Ngefilm, Nodrakorid, Multiplex, Pusatfilm"
|
|
authors = listOf("Hexated")
|
|
|
|
/**
|
|
* Status int as the following:
|
|
* 0: Down
|
|
* 1: Ok
|
|
* 2: Slow
|
|
* 3: Beta only
|
|
* */
|
|
status = 1 // will be 3 if unspecified
|
|
tvTypes = listOf(
|
|
"AsianDrama",
|
|
"TvSeries",
|
|
"Movie",
|
|
)
|
|
|
|
iconUrl = "https://www.google.com/s2/favicons?domain=gomov.bio&sz=%size%"
|
|
} |