From 85171e88dea8b79134dc862be88a7e9e5d9245e8 Mon Sep 17 00:00:00 2001 From: Steven de Tilly Date: Tue, 21 Nov 2023 13:20:16 -0500 Subject: [PATCH] Fix CI by ignoring POST_NOTIFICATIONS warning for picasso --- androidApp/android_picasso_lint.xml | 6 ++++++ androidApp/build.gradle.kts | 5 +++++ 2 files changed, 11 insertions(+) create mode 100644 androidApp/android_picasso_lint.xml diff --git a/androidApp/android_picasso_lint.xml b/androidApp/android_picasso_lint.xml new file mode 100644 index 0000000..eaaf1d9 --- /dev/null +++ b/androidApp/android_picasso_lint.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/androidApp/build.gradle.kts b/androidApp/build.gradle.kts index 1139b34..cb65b4a 100644 --- a/androidApp/build.gradle.kts +++ b/androidApp/build.gradle.kts @@ -55,6 +55,11 @@ android { resources.srcDirs("../shared/src/commonMain/resources") } } + + lint { + // https://github.com/bumptech/glide/issues/4940 + lintConfig = file("$rootDir/android_glide_lint.xml") + } } dependencies {