
* Update Grrl Power Comic * Let tachiyomi guess at chapter numbers as suggested by arkon --------- Co-authored-by: Theray Tharow <TharowT@Tharow.net>
17 lines
345 B
Groovy
17 lines
345 B
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: 'kotlin-android'
|
|
apply plugin: 'kotlinx-serialization'
|
|
|
|
ext {
|
|
extName = 'Grrl Power Comic'
|
|
pkgNameSuffix = 'en.grrlpower'
|
|
extClass = '.GrrlPower'
|
|
extVersionCode = 2
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(':lib-textinterceptor'))
|
|
}
|
|
|
|
apply from: "$rootDir/common.gradle"
|