forked from AlmightyHak/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
15 lines
429 B
Groovy
15 lines
429 B
Groovy
ext {
|
|
extName = 'Moflix-Stream'
|
|
extClass = '.MoflixStream'
|
|
extVersionCode = 9
|
|
}
|
|
|
|
apply from: "$rootDir/common.gradle"
|
|
|
|
dependencies {
|
|
implementation(project(':lib:streamvid-extractor'))
|
|
implementation(project(':lib:streamwish-extractor'))
|
|
implementation(project(':lib:streamtape-extractor'))
|
|
implementation(project(':lib:playlist-utils'))
|
|
implementation "dev.datlag.jsunpacker:jsunpacker:1.0.1"
|
|
}
|