diff options
| -rw-r--r-- | app/build.gradle | 1 | ||||
| -rw-r--r-- | app/lint.xml | 4 | 
2 files changed, 5 insertions, 0 deletions
diff --git a/app/build.gradle b/app/build.gradle index 3ceeb75..1f78a19 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -21,6 +21,7 @@ android {          lintOptions {              abortOnError false +            lintConfig file('lint.xml')          }          testApplicationId "org.connectbot.tests" diff --git a/app/lint.xml b/app/lint.xml new file mode 100644 index 0000000..db997a5 --- /dev/null +++ b/app/lint.xml @@ -0,0 +1,4 @@ +<?xml version="1.0" encoding="UTF-8"?> +<lint> +    <issue id="MissingTranslation" severity="ignore" /> +</lint>  | 
