2021-06-25 15:04:28 +02:00
|
|
|
import de.comahe.i18n4k.gradle.plugin.i18n4k
|
|
|
|
|
2021-03-18 19:11:45 +01:00
|
|
|
/*
|
|
|
|
* * Copyright (c) 2021 Shabinder Singh
|
|
|
|
* * This program is free software: you can redistribute it and/or modify
|
|
|
|
* * it under the terms of the GNU General Public License as published by
|
|
|
|
* * the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* * (at your option) any later version.
|
|
|
|
* *
|
|
|
|
* * This program is distributed in the hope that it will be useful,
|
|
|
|
* * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* * GNU General Public License for more details.
|
|
|
|
* *
|
|
|
|
* * You should have received a copy of the GNU General Public License
|
|
|
|
* * along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2021-01-26 13:54:28 +01:00
|
|
|
plugins {
|
|
|
|
id("android-setup")
|
2021-05-20 18:07:54 +02:00
|
|
|
id("multiplatform-setup")
|
|
|
|
id("multiplatform-setup-test")
|
2021-02-22 18:38:33 +01:00
|
|
|
id("kotlin-parcelize")
|
2021-01-26 13:54:28 +01:00
|
|
|
kotlin("plugin.serialization")
|
2021-06-25 15:04:28 +02:00
|
|
|
id("de.comahe.i18n4k")
|
2021-01-26 13:54:28 +01:00
|
|
|
}
|
|
|
|
|
2021-05-08 17:12:09 +02:00
|
|
|
val statelyVersion = "1.1.7"
|
|
|
|
val statelyIsoVersion = "1.1.7-a1"
|
2021-05-06 17:30:41 +02:00
|
|
|
|
2021-06-25 15:04:28 +02:00
|
|
|
i18n4k {
|
2021-07-13 22:45:09 +02:00
|
|
|
inputDirectory = "../../translations"
|
|
|
|
packageName = "com.shabinder.common.translations"
|
|
|
|
// sourceCodeLocales = listOf("en", "de", "es", "fr", "id", "pt", "ru", "uk")
|
2021-06-25 15:04:28 +02:00
|
|
|
}
|
|
|
|
|
2021-01-26 13:54:28 +01:00
|
|
|
kotlin {
|
|
|
|
sourceSets {
|
2021-05-06 17:30:41 +02:00
|
|
|
/*
|
|
|
|
* Depend on https://github.com/ReactiveCircus/cache4k
|
|
|
|
* -As Soon as Kotlin 1.5 and Compose becomes compatible
|
|
|
|
* */
|
|
|
|
all {
|
|
|
|
languageSettings.apply {
|
|
|
|
progressiveMode = true
|
|
|
|
enableLanguageFeature("NewInference")
|
|
|
|
useExperimentalAnnotation("kotlin.Experimental")
|
|
|
|
useExperimentalAnnotation("kotlin.time.ExperimentalTime")
|
|
|
|
}
|
|
|
|
}
|
2021-01-26 20:58:11 +01:00
|
|
|
commonMain {
|
2021-05-06 17:30:41 +02:00
|
|
|
dependencies {
|
|
|
|
implementation("co.touchlab:stately-concurrency:$statelyVersion")
|
|
|
|
implementation("co.touchlab:stately-isolate:$statelyIsoVersion")
|
|
|
|
implementation("co.touchlab:stately-iso-collections:$statelyIsoVersion")
|
2021-06-20 21:14:47 +02:00
|
|
|
implementation(Extras.youtubeDownloader)
|
2021-06-25 15:04:28 +02:00
|
|
|
api(Internationalization.dep)
|
2021-05-06 17:30:41 +02:00
|
|
|
}
|
2021-04-29 18:14:19 +02:00
|
|
|
}
|
2021-05-13 21:17:54 +02:00
|
|
|
androidMain {
|
2021-05-20 18:07:54 +02:00
|
|
|
dependencies {}
|
2021-05-13 21:17:54 +02:00
|
|
|
}
|
2021-01-26 13:54:28 +01:00
|
|
|
}
|
2021-03-19 16:15:58 +01:00
|
|
|
}
|