Caused by: java.lang.UnsatisfiedLinkError: dlopen failed: "/data/app/com.google.android.webview-2/li

最近的项目,部分华为手机用户反馈内部网页无法打开。也就是WebView无法正常使用。
通过查看友盟的错误统计信息,如下图所示:
这里写图片描述

Caused by: java.lang.UnsatisfiedLinkError: dlopen failed: "/data/app/com.google.android.webview-2/lib/arm/libwebviewchromium.so" is 32-bit instead of 64-bit

注意到原因很有可能是32位和64位的so文件的影响。
查阅网上的资料
build.gradle配置
ndk {
abiFilters “armeabi”, “armeabi-v7a”, “x86”
}
不要配64位的so文件

同理,如果是在jniLibs文件下配置的so文件
删掉64位的,只带非64位的,如下图所示
Caused by: java.lang.UnsatisfiedLinkError: dlopen failed:

Caused by: java.lang.UnsatisfiedLinkError: dlopen failed:
原因很有可能就是如上图所示。

你可能感兴趣的:(基本)