forked from Kohi-den/extensions-source
16 lines
390 B
Groovy
16 lines
390 B
Groovy
|
ext {
|
||
|
extName = 'GoAnimes'
|
||
|
extClass = '.GoAnimes'
|
||
|
themePkg = 'dooplay'
|
||
|
baseUrl = 'https://goanimes.net'
|
||
|
overrideVersionCode = 13
|
||
|
isNsfw = true
|
||
|
}
|
||
|
|
||
|
apply from: "$rootDir/common.gradle"
|
||
|
|
||
|
dependencies {
|
||
|
implementation(project(":lib:playlist-utils"))
|
||
|
implementation(project(":lib:blogger-extractor"))
|
||
|
implementation("dev.datlag.jsunpacker:jsunpacker:1.0.1")
|
||
|
}
|