
* [MF] Fix page list, added support for age-restricted chapters * remove unused imports * i guess we should add this?
18 lines
346 B
Groovy
18 lines
346 B
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: 'kotlin-android'
|
|
apply plugin: 'kotlinx-serialization'
|
|
|
|
ext {
|
|
extName = 'MangaFox'
|
|
pkgNameSuffix = 'en.mangafox'
|
|
extClass = '.MangaFox'
|
|
extVersionCode = 6
|
|
isNsfw = true
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":lib-unpacker"))
|
|
}
|
|
|
|
apply from: "$rootDir/common.gradle"
|