Lint Report: 336 errors
Issue Types

Overview

Lint
1error LintError: Lint Failure
Correctness:Messages
335error MissingTranslation: Incomplete translation
Disabled Checks (220)

Lint Failure

/home/elo/.gradle/daemon/5.6.4/META-INF/versions/9/module-info.class: Unexpected failure during lint analysis of module-info.class (this is a bug in lint or one of the libraries it depends on)

Stack: NullPointerException:InvalidPackageDetector.checkClass(InvalidPackageDetector.java:112)
←AsmVisitor.runClassDetectors(AsmVisitor.java:154)
←LintDriver.runClassDetectors(LintDriver.kt:1461)
←LintDriver.checkClasses(LintDriver.kt:1329)
←LintDriver.runFileDetectors(LintDriver.kt:1096)
←LintDriver.checkProject(LintDriver.kt:895)
←LintDriver.analyze(LintDriver.kt:416)
←LintCliClient.run(LintCliClient.java:235)


You can set environment variable LINT_PRINT_STACKTRACE=true to dump a full stacktrace to stdout.

LintError Error Priority 10/10

Incomplete translation

../../src/main/res/values/strings.xml:2: "app_name" is not translated in "de" (German), "it" (Italian), "fr" (French), "es" (Spanish), "nl" (Dutch)
   1 <resources>
   2     <string name="app_name">EloViewHomeSDK TestApp</string>                                         
   3     <string name="accesstoken_api">Account Manager API</string>
   4     <string name="getToken">Get Token</string>
   5     <string name="load_verify_token">Load and Verify Token</string>
../../src/main/res/values/strings.xml:3: "accesstoken_api" is not translated in "de" (German), "it" (Italian), "fr" (French), "es" (Spanish), "nl" (Dutch)
   1 <resources>
   2     <string name="app_name">EloViewHomeSDK TestApp</string>
   3     <string name="accesstoken_api">Account Manager API</string>                                     
   4     <string name="getToken">Get Token</string>
   5     <string name="load_verify_token">Load and Verify Token</string>
   6     <string name="get_verify_token">Get and Verify Token</string>
../../src/main/res/values/strings.xml:4: "getToken" is not translated in "de" (German), "it" (Italian), "fr" (French), "es" (Spanish), "nl" (Dutch)
   1 <resources>
   2     <string name="app_name">EloViewHomeSDK TestApp</string>
   3     <string name="accesstoken_api">Account Manager API</string>
   4     <string name="getToken">Get Token</string>                                                      
   5     <string name="load_verify_token">Load and Verify Token</string>
   6     <string name="get_verify_token">Get and Verify Token</string>
   7     <string name="verifyToken">Verify Token</string>
../../src/main/res/values/strings.xml:5: "load_verify_token" is not translated in "de" (German), "it" (Italian), "fr" (French), "es" (Spanish), "nl" (Dutch)
   2     <string name="app_name">EloViewHomeSDK TestApp</string>
   3     <string name="accesstoken_api">Account Manager API</string>
   4     <string name="getToken">Get Token</string>
   5     <string name="load_verify_token">Load and Verify Token</string>                                 
   6     <string name="get_verify_token">Get and Verify Token</string>
   7     <string name="verifyToken">Verify Token</string>
   8     <string name="enter_email">Enter email Id</string>
../../src/main/res/values/strings.xml:6: "get_verify_token" is not translated in "de" (German), "it" (Italian), "fr" (French), "es" (Spanish), "nl" (Dutch)
   3     <string name="accesstoken_api">Account Manager API</string>
   4     <string name="getToken">Get Token</string>
   5     <string name="load_verify_token">Load and Verify Token</string>
   6     <string name="get_verify_token">Get and Verify Token</string>                                   
   7     <string name="verifyToken">Verify Token</string>
   8     <string name="enter_email">Enter email Id</string>
   9     <string name="enter_password">Enter Password</string>
MissingTranslation Messages Correctness Error Priority 8/10

Disabled Checks

One or more issues were not run by lint, either because the check is not enabled by default, or because it was disabled with a command line flag or via one or more lint.xml configuration files in the project directories.

Suppressing Warnings and Errors

Lint errors can be suppressed in a variety of ways:

1. With a @SuppressLint annotation in the Java code
2. With a tools:ignore attribute in the XML file
3. With a //noinspection comment in the source code
4. With ignore flags specified in the build.gradle file, as explained below
5. With a lint.xml configuration file in the project
6. With a lint.xml configuration file passed to lint via the --config flag
7. With the --ignore flag passed to lint.

To suppress a lint warning with an annotation, add a @SuppressLint("id") annotation on the class, method or variable declaration closest to the warning instance you want to disable. The id can be one or more issue id's, such as "UnusedResources" or {"UnusedResources","UnusedIds"}, or it can be "all" to suppress all lint warnings in the given scope.

To suppress a lint warning with a comment, add a //noinspection id comment on the line before the statement with the error.

To suppress a lint warning in an XML file, add a tools:ignore="id" attribute on the element containing the error, or one of its surrounding elements. You also need to define the namespace for the tools prefix on the root element in your document, next to the xmlns:android declaration:
xmlns:tools="http://schemas.android.com/tools"

To suppress a lint warning in a build.gradle file, add a section like this:

android {
    lintOptions {
        disable 'TypographyFractions','TypographyQuotes'
    }
}

Here we specify a comma separated list of issue id's after the disable command. You can also use warning or error instead of disable to change the severity of issues.

To suppress lint warnings with a configuration XML file, create a file named lint.xml and place it at the root directory of the module in which it applies.

The format of the lint.xml file is something like the following:

<?xml version="1.0" encoding="UTF-8"?>
<lint>
    <!-- Ignore everything in the test source set -->
    <issue id="all">
        <ignore path="*/test/*" />
    </issue>

    <!-- Disable this given check in this project -->
    <issue id="IconMissingDensityFolder" severity="ignore" />

    <!-- Ignore the ObsoleteLayoutParam issue in the given files -->
    <issue id="ObsoleteLayoutParam">
        <ignore path="res/layout/activation.xml" />
        <ignore path="res/layout-xlarge/activation.xml" />
        <ignore regexp="(foo|bar).java" />
    </issue>

    <!-- Ignore the UselessLeaf issue in the given file -->
    <issue id="UselessLeaf">
        <ignore path="res/layout/main.xml" />
    </issue>

    <!-- Change the severity of hardcoded strings to "error" -->
    <issue id="HardcodedText" severity="error" />
</lint>

To suppress lint checks from the command line, pass the --ignore flag with a comma separated list of ids to be suppressed, such as:
$ lint --ignore UnusedResources,UselessLeaf /my/project/path

For more information, see http://g.co/androidstudio/suppressing-lint-warnings