
* Add support to better internationalization with a new lib. * Add info about `lib-i18n` in the contributing guide. * Use lib-i18n in M+ as well. * Change properties files to UTF-8.
18 lines
352 B
Groovy
18 lines
352 B
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: 'kotlin-android'
|
|
apply plugin: 'kotlinx-serialization'
|
|
|
|
ext {
|
|
extName = 'MangaDex'
|
|
pkgNameSuffix = 'all.mangadex'
|
|
extClass = '.MangaDexFactory'
|
|
extVersionCode = 182
|
|
isNsfw = true
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":lib-i18n"))
|
|
}
|
|
|
|
apply from: "$rootDir/common.gradle"
|