From dfb5e2b5743a4763ffd4c78f725248c459727ea1 Mon Sep 17 00:00:00 2001 From: Front <27463495+Frontesque@users.noreply.github.com> Date: Sun, 3 Apr 2022 19:31:22 -0400 Subject: [PATCH] fix: :ambulance: Disable linting on builds Fix the error occuring in automatic builds due to linting --- android/app/build.gradle | 3 +++ 1 file changed, 3 insertions(+) diff --git a/android/app/build.gradle b/android/app/build.gradle index 2b0340f..50b10a6 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -20,6 +20,9 @@ android { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } + }, + lintOptions { + checkReleaseBuilds false } }