Verify Missing Translations Task - maxirosson/jdroid-gradle-plugin GitHub Wiki
This task verifies if the word TODO is present on your android strings resources files. When you have pending translations you can use TODO as value, so you can continue your work while you wait for them.
This is useful to verify if is any missing translation before you go live.
<resources>
<string name="textToTranslate">TODO</string>
<resources>
jdroid {
resourcesDirsPaths = ['src/main/res/']
}
| Property | Description | Default Value |
|---|---|---|
| resourcesDirsPaths | Array of strings containing the relative paths to all the android resource directories of your project | ['src/main/res/'] |
gradle verifyMissingTranslations