aboutsummaryrefslogtreecommitdiff
path: root/app/build.gradle.kts
diff options
context:
space:
mode:
authorHarsh Shandilya <me@msfjarvis.dev>2023-03-21 11:36:32 +0530
committerHarsh Shandilya <me@msfjarvis.dev>2023-03-21 13:43:09 +0530
commit2f524fc2b7bb8c957267c0f67e7cb75a99612475 (patch)
tree4c480c140a4b36ee0db32185f95ee1ba615c3e57 /app/build.gradle.kts
parenta6652134a252180c5ab2808b80146393745abe45 (diff)
fix(build): remove `DSL_SCOPE_VIOLATION` suppression
This was a Gradle bug that is now fixed https://docs.gradle.org/8.1-rc-1/release-notes.html#:~:text=Access%20to%20version%20catalog%20for%20plugins%20in%20the%20plugins%20%7B%7D%20block
Diffstat (limited to 'app/build.gradle.kts')
-rw-r--r--app/build.gradle.kts2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/build.gradle.kts b/app/build.gradle.kts
index bbe15182..9a86d2e3 100644
--- a/app/build.gradle.kts
+++ b/app/build.gradle.kts
@@ -2,7 +2,7 @@
* Copyright © 2014-2021 The Android Password Store Authors. All Rights Reserved.
* SPDX-License-Identifier: GPL-3.0-only
*/
-@file:Suppress("DSL_SCOPE_VIOLATION", "UnstableApiUsage")
+@file:Suppress("UnstableApiUsage")
plugins {
id("com.github.android-password-store.android-application")