com.doist.gradle.android-translations-check
Owner: Doist
Gradle plugin to check Android translation strings.
https://github.com/Doist/android-translations-check
Sources: https://github.com/Doist/android-translations-check
Version 0.0.2 (latest)
Created 17 December 2020.
Gradle plugin to check Android translation strings.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.doist.gradle.android-translations-check") version "0.0.2"
}
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.doist.gradle.android-translations-check:com.doist.gradle.android-translations-check.gradle.plugin:0.0.2") }
It can then be applied in the precompiled script plugin:plugins { id("com.doist.gradle.android-translations-check") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.doist.gradle.android-translations-check:com.doist.gradle.android-translations-check.gradle.plugin:0.0.2") } } apply(plugin = "com.doist.gradle.android-translations-check")
- Applying plugins to all subprojects .