forked from Kohi-den/extensions-source
16 lines
429 B
Groovy
16 lines
429 B
Groovy
|
ext {
|
||
|
extName = 'Moflix-Stream'
|
||
|
extClass = '.MoflixStream'
|
||
|
extVersionCode = 8
|
||
|
}
|
||
|
|
||
|
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"
|
||
|
}
|