fixed Rebahin and moved Ngefilm

This commit is contained in:
sora 2023-07-20 19:35:26 +07:00
parent 46c67dbd35
commit 864b266f9e
14 changed files with 76 additions and 234 deletions

View file

@ -1,12 +1,12 @@
// use an integer for version numbers
version = 6
version = 7
cloudstream {
language = "id"
// All of these properties are optional, you can safely remove them
// description = "Lorem Ipsum"
description = "Include: Cgvindo, Kitanonton"
authors = listOf("Hexated")
/**

View file

@ -0,0 +1,9 @@
package com.hexated
import com.lagradost.cloudstream3.TvType
class Cgvindo : RebahinProvider() {
override var mainUrl = "http://cgvindo.click"
override var name = "Cgvindo"
}

View file

@ -13,11 +13,10 @@ import org.jsoup.nodes.Element
import java.net.URI
open class RebahinProvider : MainAPI() {
override var mainUrl = "http://104.237.198.198"
override var mainUrl = "http://179.43.163.50"
override var name = "Rebahin"
override val hasMainPage = true
override var lang = "id"
override val hasDownloadSupport = true
open var mainServer = "http://172.96.161.72"
override val supportedTypes = setOf(
TvType.Movie,

View file

@ -1,4 +1,3 @@
package com.hexated
import com.lagradost.cloudstream3.plugins.CloudstreamPlugin
@ -6,10 +5,11 @@ import com.lagradost.cloudstream3.plugins.Plugin
import android.content.Context
@CloudstreamPlugin
class RebahinProviderPlugin: Plugin() {
class RebahinProviderPlugin : Plugin() {
override fun load(context: Context) {
// All providers should be added in this manner. Please don't edit the providers list directly.
registerMainAPI(RebahinProvider())
registerMainAPI(Kitanonton())
registerMainAPI(Kitanonton())
registerMainAPI(Cgvindo())
}
}