19 lines
544 B
Groovy
19 lines
544 B
Groovy
ext {
|
|
extName = 'Pobreflix'
|
|
extClass = '.Pobreflix'
|
|
themePkg = 'dooplay'
|
|
baseUrl = 'https://pobreflix.global'
|
|
overrideVersionCode = 15
|
|
isNsfw = true
|
|
}
|
|
|
|
apply from: "$rootDir/common.gradle"
|
|
|
|
dependencies {
|
|
implementation(project(":lib:filemoon-extractor"))
|
|
implementation(project(":lib:fireplayer-extractor"))
|
|
implementation(project(":lib:streamwish-extractor"))
|
|
implementation(project(":lib:streamtape-extractor"))
|
|
implementation(project(":lib:playlist-utils"))
|
|
implementation(libs.jsunpacker)
|
|
}
|