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)
0.0.2
Created 17 December 2020.
Gradle plugin to check Android translation strings.
Using the plugins DSL:
plugins {
id("com.doist.gradle.android-translations-check") version "0.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.doist.gradle:android-translations-check:0.0.2")
}
}
apply(plugin = "com.doist.gradle.android-translations-check")
Using the plugins DSL:
plugins {
id "com.doist.gradle.android-translations-check" version "0.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.doist.gradle:android-translations-check:0.0.2"
}
}
apply plugin: "com.doist.gradle.android-translations-check"