ended3월 17일· 1 sources

Fixing “Install Failed: code:9568347 – install parse native so failed” for a HarmonyOS Native (C++) Project

HarmonyOS Native (C++) 프로젝트에서 "Install Failed: code:9568347" 오류 해결하기

Why it matters

Error 9568347 occurs when deploying a HarmonyOS Native (C++) project from DevEco Studio because the compiled .so library's ABI doesn't match the target device's architecture (e.g., building for x86_64 but deploying to an ARM64 device). The fix involves configuring the `abiFilters` field in the module's `build-profile.json5` under `buildOption.externalNativeOptions` to include the correct ABI such as `arm64-v8a` for physical devices.

1
Sources
+0
24h
Growth
180d
Active
HarmonyOSDevEco StudioABI mismatchabiFiltersNative C++

Sources

Related Issues