nyx69
nyx69

Reputation: 969

Error in official WhatsApp Stickers example App

I just found this Project and was like. hey. why not trying to use it?

So. just downloaded it (i did NOT change anything!), opened Android Studio, ran it, and faced following.

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

Then I tried to Google the issue, re-checked it, re-tried it, and finally end up here.

Do you have any idea on how to get this project working?

I reached in an issue-ticket: https://github.com/WhatsApp/stickers/issues/429#issue-414808090

Upvotes: 2

Views: 1950

Answers (1)

Adil Raza Bangash
Adil Raza Bangash

Reputation: 295

just add this library in your build file

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

Note: The version of this library should be equal to other fresco libraries already present in your build file.

Upvotes: 2

Related Questions