I am using android studio 1.1.0. I want to disable specific lint checks like 'Incomplete Translation'. So, I went to File -> Settings... -> Inspections -> Android Lint and unchecked 'Incomplete Translation' item, then pressed Apply & OK buttons. Now, generating signed apk still throws lint errors related to missing translations.
Further on, I disabled entire Android Lint item to see if generation of signed apk skips lint error checking or not. Result is I still got same lint errors for missing translations whereas I was expecting no lint error checking as per updated settings. Is this the bug from android studio or am I doing something wrong here?
Note that I don't want to disable lint error checking entirely, which I can do easily by adding following lines under build.gradle:
lintOptions {
checkReleaseBuilds false
}
I just want to turn off few lint checks from settings dialog.