Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

error: cannot access AnimatedImage class file for com.facebook.imagepipeline.animated.base.AnimatedImage not found

I'm getting errors

error: cannot access AnimatedImage

class file for com.facebook.imagepipeline.animated.base.AnimatedImage not found

On attempting to run https://github.com/WhatsApp/stickers/tree/master/Android purely from source. After checking Build Output, I see the following.

I couldn't find anything mentioning com.facebook.imagepipeline.animated.base.AnimatedImage, and can't manage to find what's wrong.

Edit: I actually managed to solve this. I was running a not matching version of the Android API to my connected android device.

like image 854
Guy Twig Avatar asked Jan 29 '19 18:01

Guy Twig


1 Answers

add one more dependency

implementation 'com.facebook.fresco:animated-base:1.13.0'

then it works just fine

like image 193
Sachin Avatar answered Oct 23 '22 17:10

Sachin