NativeLoader尚未初始化。要使用标准的本地库加载

huangapple go评论80阅读模式
英文:

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

问题

在我的应用程序中获取 WhatsApp 贴纸包时遇到错误。

日志中显示:NativeLoader 未初始化。要使用标准的本机库加载,请调用 nativeloader.Init(new SystemDelegate())。

为什么会出现这个错误并且无法获取贴纸包?有人解决了这个问题吗?

英文:

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

得分: 6

这很可能是因为代码使用了Fresco库,它需要按以下方式进行初始化:

Fresco.initialize(this);

其中,this 应为一个 Context。详见Fresco文档了解更多。

英文:

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.

huangapple
  • 本文由 发表于 2020年8月23日 13:15:23
  • 转载请务必保留本文链接:https://go.coder-hub.com/63543630.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定