summaryrefslogtreecommitdiff
path: root/wallet/build.gradle
diff options
context:
space:
mode:
authorTorsten Grote <t@grobox.de>2020-03-20 16:12:50 -0300
committerTorsten Grote <t@grobox.de>2020-03-20 16:12:50 -0300
commita690087d82e8b0ee774542d9956698a349408824 (patch)
treea55f0fd9f95febe722471c70ac574f59bf7f8da7 /wallet/build.gradle
parentdb8b71418b766258a7a4bda91e496b1b03cb28cd (diff)
downloadtaler-android-a690087d82e8b0ee774542d9956698a349408824.tar.gz
taler-android-a690087d82e8b0ee774542d9956698a349408824.tar.bz2
taler-android-a690087d82e8b0ee774542d9956698a349408824.zip
Ignore annoying lint errors caused by material design lib
Diffstat (limited to 'wallet/build.gradle')
-rw-r--r--wallet/build.gradle12
1 files changed, 11 insertions, 1 deletions
diff --git a/wallet/build.gradle b/wallet/build.gradle
index 3b8e13d..e3013ce 100644
--- a/wallet/build.gradle
+++ b/wallet/build.gradle
@@ -20,7 +20,9 @@ apply plugin: 'kotlin-android-extensions'
android {
compileSdkVersion 29
- buildToolsVersion "29.0.3"
+ //noinspection GradleDependency
+ buildToolsVersion "$build_tools_version"
+
defaultConfig {
applicationId "net.taler.wallet"
minSdkVersion 24
@@ -44,6 +46,14 @@ android {
kotlinOptions {
jvmTarget = "1.8"
}
+
+ lintOptions {
+ abortOnError true
+ ignoreWarnings false
+ // TODO remove once com.google.android.material fixed this
+ // https://github.com/material-components/material-components-android/issues/504
+ ignore "WrongConstant"
+ }
}
dependencies {