diff options
author | pacien | 2018-02-12 19:25:26 +0100 |
---|---|---|
committer | pacien | 2018-02-12 19:25:26 +0100 |
commit | 1eb53743996ffdabb6372a59f10d608f5830314e (patch) | |
tree | 582b1cc58414cadbf698963366337adc3d9aac5f /app/lint.xml | |
parent | 53d199aea7854507d7a484f43a8fe6eb13707642 (diff) | |
download | tincapp-1eb53743996ffdabb6372a59f10d608f5830314e.tar.gz |
Adjust lint options (workaround a Gradle-Kotlin bug)
Diffstat (limited to 'app/lint.xml')
-rw-r--r-- | app/lint.xml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/app/lint.xml b/app/lint.xml new file mode 100644 index 0000000..04dadc1 --- /dev/null +++ b/app/lint.xml | |||
@@ -0,0 +1,15 @@ | |||
1 | <?xml version="1.0" encoding="UTF-8"?> | ||
2 | <lint> | ||
3 | <issue id="InvalidPackage"> | ||
4 | <!-- In unused library code --> | ||
5 | <ignore regexp="org.bouncycastle"/> | ||
6 | <ignore regexp="org.apache.commons"/> | ||
7 | </issue> | ||
8 | |||
9 | <issue id="TrustAllX509TrustManager"> | ||
10 | <!-- In unused library code --> | ||
11 | <ignore regexp="org.bouncycastle"/> | ||
12 | </issue> | ||
13 | |||
14 | <issue id="MissingTranslation" severity="warning"/> | ||
15 | </lint> | ||