
* rename file add missing languages move english into factory * force network on browse, latest, and chapter pages request so setting changes are respected * update build.gradle
17 lines
333 B
Groovy
17 lines
333 B
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: 'kotlin-android'
|
|
|
|
ext {
|
|
appName = 'Tachiyomi: MangaDex'
|
|
pkgNameSuffix = 'all.mangadex'
|
|
extClass = '.MangaDexFactory'
|
|
extVersionCode = 92
|
|
libVersion = '1.2'
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':lib-ratelimit')
|
|
}
|
|
|
|
apply from: "$rootDir/common.gradle"
|