From ade73fd5bc38e8e1f1a4ab3b44132da63f2f7982 Mon Sep 17 00:00:00 2001 From: Harsh Shandilya Date: Wed, 20 Jul 2022 01:29:12 +0530 Subject: Compile against SDK 33 (#2023) * Compile against SDK 33 * autofill-parser: fix warnings for SDK 33 upgrade * app: fix warnings for SDK 33 upgrade * Mark all clipboard content as sensitive from crypto activities * Skip Snackbar on Android 13 and above * detekt: raise `TooManyFunctions` limit to 15 --- config/detekt/detekt.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'config') diff --git a/config/detekt/detekt.yml b/config/detekt/detekt.yml index 69a60690..78d50515 100644 --- a/config/detekt/detekt.yml +++ b/config/detekt/detekt.yml @@ -158,11 +158,11 @@ complexity: TooManyFunctions: active: true excludes: ['**/test/**', '**/androidTest/**', '**/commonTest/**', '**/jvmTest/**', '**/jsTest/**', '**/iosTest/**'] - thresholdInFiles: 11 - thresholdInClasses: 11 - thresholdInInterfaces: 11 - thresholdInObjects: 11 - thresholdInEnums: 11 + thresholdInFiles: 15 + thresholdInClasses: 15 + thresholdInInterfaces: 15 + thresholdInObjects: 15 + thresholdInEnums: 15 ignoreDeprecated: false ignorePrivate: false ignoreOverridden: false -- cgit v1.2.3