forked from Kohi-den/extensions-source

* fix(src): Multiple updates Closes #93 Closes #1 Closes #133 Closes #142 (Yeah, this extension had a bug but someone closed it before fixing it.) * Fix(lib/ChillxExtractor) Closes #153
18 lines
509 B
Groovy
18 lines
509 B
Groovy
ext {
|
|
extName = 'Pobreflix'
|
|
extClass = '.Pobreflix'
|
|
themePkg = 'dooplay'
|
|
baseUrl = 'https://pobreflix1.art'
|
|
overrideVersionCode = 10
|
|
isNsfw = true
|
|
}
|
|
|
|
apply from: "$rootDir/common.gradle"
|
|
|
|
dependencies {
|
|
implementation(project(":lib:filemoon-extractor"))
|
|
implementation(project(":lib:streamwish-extractor"))
|
|
implementation(project(":lib:streamtape-extractor"))
|
|
implementation(project(":lib:playlist-utils"))
|
|
implementation "dev.datlag.jsunpacker:jsunpacker:1.0.1"
|
|
}
|