17 lines
349 B
Groovy
17 lines
349 B
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: 'kotlin-android'
|
|
apply plugin: 'kotlinx-serialization'
|
|
|
|
ext {
|
|
extName = 'MANGA Plus by SHUEISHA'
|
|
pkgNameSuffix = 'all.mangaplus'
|
|
extClass = '.MangaPlusFactory'
|
|
extVersionCode = 49
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":lib-i18n"))
|
|
}
|
|
|
|
apply from: "$rootDir/common.gradle"
|