
my bad, I thought it worked without the extra strings, but I guess when I tested it, the chapter cache was stale. Even with debugging tools, Android is pain.
13 lines
252 B
Groovy
13 lines
252 B
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: 'kotlin-android'
|
|
|
|
ext {
|
|
extName = 'Latis Books'
|
|
pkgNameSuffix = 'en.latisbooks'
|
|
extClass = '.Latisbooks'
|
|
extVersionCode = 4
|
|
isNsfw = true
|
|
}
|
|
|
|
apply from: "$rootDir/common.gradle"
|