16 lines
412 B
Groovy
16 lines
412 B
Groovy
|
ext {
|
||
|
extName = 'Megaflix'
|
||
|
extClass = '.Megaflix'
|
||
|
extVersionCode = 16
|
||
|
isNsfw = true
|
||
|
}
|
||
|
|
||
|
apply from: "$rootDir/common.gradle"
|
||
|
|
||
|
dependencies {
|
||
|
implementation(project(':lib:mixdrop-extractor'))
|
||
|
implementation(project(":lib:streamtape-extractor"))
|
||
|
implementation(project(":lib:playlist-utils"))
|
||
|
// for mixdrop and megaflix
|
||
|
implementation("dev.datlag.jsunpacker:jsunpacker:1.0.1")
|
||
|
}
|