From 96e190b789bbacac13f6472ef6d625bfd5ad7420 Mon Sep 17 00:00:00 2001 From: Vignesh Venkatasubramanian Date: Wed, 23 Feb 2022 10:48:19 -0800 Subject: [PATCH] avif: Add annotationProcessor dependency Without this, the annotation processor won't be able to find the AvifGlideModule. Fixes github issue #4751 PiperOrigin-RevId: 430490297 --- integration/avif/build.gradle | 2 ++ 1 file changed, 2 insertions(+) diff --git a/integration/avif/build.gradle b/integration/avif/build.gradle index 7f81c27576..4842b0fe1f 100644 --- a/integration/avif/build.gradle +++ b/integration/avif/build.gradle @@ -4,6 +4,8 @@ dependencies { implementation project(':library') implementation 'org.aomedia.avif.android:avif:0.9.3.545a756' implementation "com.google.guava:guava:${GUAVA_VERSION}" + + annotationProcessor project(':annotation:compiler') } android {