Anyone know what I'm doing wrong?

*My project structure is pretty straight forward.*
/build.gradle
/app/build.gradle
/app/lint.xml

*lint options in /app/build.gradle:*
    lintOptions {
        abortOnError false
        absolutePaths false
        lintConfig file("lint.xml")
    }

*lint.xml file contents:*
<?xml version="1.0" encoding="UTF-8"?>
<lint>
    <issue id="MissingTranslation">
        <ignore path="res/values/qa-strings.xml" />
    </issue>
</lint>

I also tried the path src/main/res/values/qa-strings.xml

The Lint Report still tells me "MissingTranslation: Incomplete translation" 
in that file I'm trying to ignore.

thanks!

-- 
You received this message because you are subscribed to the Google Groups 
"adt-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to