diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2021-05-22 22:16:52 +0530 |
---|---|---|
committer | Harsh Shandilya <me@msfjarvis.dev> | 2021-05-22 22:16:52 +0530 |
commit | f2ad7e489f9330692bdc8f912638886061837d5c (patch) | |
tree | 014f789effe5affd5da5f85b4a176c362a4de32e /app | |
parent | 8f4cab491752eeb50f6a4e88d5e5507386ecac61 (diff) |
lint: one bug fixed and another takes its place
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
Diffstat (limited to 'app')
-rw-r--r-- | app/build.gradle.kts | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 9be48da0..b0ee9972 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -35,11 +35,8 @@ android { isAbortOnError = true isCheckReleaseBuilds = false disable("MissingTranslation", "PluralsCandidate", "ImpliedQuantity") - // Kotlin 1.5 + AGP 4.1.3 trip up NewApi for Kotlin intrinsics like forEach - // This can be fixed by either switching to AGP 4.2.0-rc1, or disabling it - // outright. - // https://issuetracker.google.com/issues/185418482 - disable("NewApi") + // https://issuetracker.google.com/issues/187524311 + disable("DialogFragmentCallbacksDetector") } flavorDimensions("free") |