forked from Kohi-den/extensions-source

* chore(src/es): Change Domain on Hackstore and add VidHideExtractor Checklist: - [x] Updated `extVersionCode` value in `build.gradle` for individual extensions - [x] Have not changed source names - [x] Have explicitly kept the `id` if a source's name or language were changed - [x] Have tested the modifications by compiling and running the extension through Android Studio * chore(src/ar): fix VideoListParse on Anime4up
16 lines
466 B
Groovy
16 lines
466 B
Groovy
ext {
|
|
extName = 'Hackstore'
|
|
extClass = '.Hackstore'
|
|
extVersionCode = 10
|
|
}
|
|
|
|
apply from: "$rootDir/common.gradle"
|
|
|
|
dependencies {
|
|
implementation(project(':lib:streamtape-extractor'))
|
|
implementation(project(':lib:voe-extractor'))
|
|
implementation(project(':lib:filemoon-extractor'))
|
|
implementation(project(':lib:streamwish-extractor'))
|
|
implementation(project(':lib:dood-extractor'))
|
|
implementation(project(':lib:vidhide-extractor'))
|
|
}
|