16 lines
405 B
Groovy
16 lines
405 B
Groovy
|
ext {
|
||
|
extName = 'Animenosub'
|
||
|
extClass = '.Animenosub'
|
||
|
themePkg = 'animestream'
|
||
|
baseUrl = 'https://animenosub.com'
|
||
|
overrideVersionCode = 5
|
||
|
isNsfw = true
|
||
|
}
|
||
|
|
||
|
apply from: "$rootDir/common.gradle"
|
||
|
|
||
|
dependencies {
|
||
|
implementation(project(':lib:filemoon-extractor'))
|
||
|
implementation(project(':lib:streamwish-extractor'))
|
||
|
implementation "dev.datlag.jsunpacker:jsunpacker:1.0.1"
|
||
|
}
|