英文:
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.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论