我们在 android 设备中的各种随机位置发生了以下崩溃。虽然我们已将 ndk abifilters 更改为“armeabi-v7a”、“arm64-v8a”
Crashed: Thread : SIGSEGV 0x0000000000000010
#00 pc 0x723d46f748 libjsc.so
#01 pc 0x723d4bbfe8 libjsc.so
#02 pc 0x7339d68b6c libc.so
当前配置
RN 版本 0.63.4
defaultConfig {
..
ndk { abiFilters "armeabi-v7a", "arm64-v8a" }
}
splits {
abi {
reset()
enable enableSeparateBuildPerCPUArchitecture
universalApk false // If true, also generate a universal APK
include "armeabi-v7a",
"x86", "arm64-v8a", "x86_64"
}
}
project.ext.react = [
entryFile : "index.js",
enableHermes: false, // clean and rebuild if changing
]