From 2c2d4aa306caee1caecb428102df3b5d5e1ad1db Mon Sep 17 00:00:00 2001 From: Andy Scherzinger Date: Wed, 18 May 2022 18:28:04 +0200 Subject: [PATCH] move lintOptions to lint block Signed-off-by: Andy Scherzinger --- app/build.gradle | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 7bc9438a1..bc4cb401c 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -132,16 +132,16 @@ android { targetCompatibility JavaVersion.VERSION_1_8 } - lintOptions { - abortOnError false - htmlReport true - htmlOutput file("$project.buildDir/reports/lint/lint.html") - disable 'MissingTranslation' - } buildFeatures { viewBinding true } + lint { + abortOnError false + disable 'MissingTranslation' + htmlOutput file("$project.buildDir/reports/lint/lint.html") + htmlReport true + } } ext {