mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-06 04:25:06 +01:00
38 lines
901 B
Plaintext
38 lines
901 B
Plaintext
|
plugins {
|
||
|
id("com.android.library")
|
||
|
kotlin("android")
|
||
|
}
|
||
|
|
||
|
android {
|
||
|
namespace = "eu.kanade.tachiyomi.i18n"
|
||
|
compileSdk = AndroidConfig.compileSdk
|
||
|
|
||
|
defaultConfig {
|
||
|
minSdk = AndroidConfig.minSdk
|
||
|
targetSdk = AndroidConfig.targetSdk
|
||
|
}
|
||
|
|
||
|
compileOptions {
|
||
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
||
|
targetCompatibility = JavaVersion.VERSION_1_8
|
||
|
}
|
||
|
kotlinOptions {
|
||
|
jvmTarget = JavaVersion.VERSION_1_8.toString()
|
||
|
}
|
||
|
}
|
||
|
|
||
|
tasks {
|
||
|
val localesConfigTask = registerLocalesConfigTask(project)
|
||
|
|
||
|
// Duplicating Hebrew string assets due to some locale code issues on different devices
|
||
|
val copyHebrewStrings by registering(Copy::class) {
|
||
|
from("./src/main/res/values-he")
|
||
|
into("./src/main/res/values-iw")
|
||
|
include("**/*")
|
||
|
}
|
||
|
|
||
|
preBuild {
|
||
|
dependsOn(copyHebrewStrings, localesConfigTask)
|
||
|
}
|
||
|
}
|