summaryrefslogtreecommitdiff
path: root/wallet/build.gradle
diff options
context:
space:
mode:
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 {