com.github.gradle.android-i18n
Owner: Denis Colliot
Gradle plugin for android generating localized resources from an external translations source.
https://github.com/denis-colliot/gradle-android-i18n
Sources: https://github.com/denis-colliot/gradle-android-i18n
Version 2.0.0 (latest)
Created 15 September 2020.
Gradle plugin for android generating localized resources from an external translations source.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.github.gradle.android-i18n") version "2.0.0"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("com.github.gradle.android-i18n:com.github.gradle.android-i18n.gradle.plugin:2.0.0") }
It can then be applied in the precompiled script plugin:plugins { id("com.github.gradle.android-i18n") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.github.gradle.android-i18n:com.github.gradle.android-i18n.gradle.plugin:2.0.0") } } apply(plugin = "com.github.gradle.android-i18n")
- Applying plugins to all subprojects .