Skip to content

Commit

Permalink
Fix CI by ignoring POST_NOTIFICATIONS warning for picasso
Browse files Browse the repository at this point in the history
  • Loading branch information
sdetilly committed Nov 21, 2023
1 parent b8302e2 commit 85171e8
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
6 changes: 6 additions & 0 deletions androidApp/android_picasso_lint.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8" ?>
<lint>
<issue id="NotificationPermission">
<ignore regexp="com.squareup.picasso.RemoteViewsAction.NotificationAction" />
</issue>
</lint>
5 changes: 5 additions & 0 deletions androidApp/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 85171e8

Please sign in to comment.