
* add Tachidesk extension * rewrite with kotlinx-serialization * apply suggestions by @ObserverOfTime * linter must lint * map Tachidesk MangaStatus to SManga constants * raise exception when baseUrl is empty * defensive programming * print Exception to Log.e instead * cesco asked for this...
15 lines
316 B
Groovy
15 lines
316 B
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: 'kotlin-android'
|
|
apply plugin: 'kotlinx-serialization'
|
|
|
|
ext {
|
|
extName = 'Tachidesk'
|
|
pkgNameSuffix = 'all.tachidesk'
|
|
extClass = '.Tachidesk'
|
|
extVersionCode = 1
|
|
libVersion = '1.2'
|
|
containsNsfw = true
|
|
}
|
|
|
|
apply from: "$rootDir/common.gradle"
|