NativeLoader has not been initialized. To use standard native library loading

Viewed 818

getting an error while fetching a WhatsApp sticker pack in my app

NativeLoader has not been initialized. To use standard native library loading, call nativeloader.Init(new SystemDelegate()).

why this error show in logcat and sticker packs cannot fetch anyone solves this issue

1 Answers

This is likely because the code uses the Fresco library, which has to be initialized as follows:

Fresco.initialize(this);

Where this shall be a Context. See the Fresco docs for more.

Related