
* 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. * use the assets/ folder instead of the res/ folder files under assets/ are addressible by name * mangadex: add string invalid_manga_id * M+: Add translations for Vietnamese * m+: Add Vietnamese to list of available languages * mangadex: remove duplicate declarations --------- Co-authored-by: Alessandro Jean <14254807+alessandrojean@users.noreply.github.com>
22 lines
319 B
Plaintext
22 lines
319 B
Plaintext
plugins {
|
|
id("com.android.library")
|
|
kotlin("android")
|
|
}
|
|
|
|
android {
|
|
compileSdk = AndroidConfig.compileSdk
|
|
|
|
defaultConfig {
|
|
minSdk = AndroidConfig.minSdk
|
|
targetSdk = AndroidConfig.targetSdk
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly(libs.kotlin.stdlib)
|
|
}
|