1# FAQs 2 3## Incompatible System Version 4 5### Symptom 6 7The **usb/usb_ddk_api.h not found** or **hid/hid_ddk_api.h not found** error is displayed during SDK building or running. 8 9### Solution 10 11If an error is reported during SDK building, check whether the system version is the latest. 12 13If an error is reported during running, check whether the system version is 4.1 Release or later. 14 15### Symptom 16 17The error message **compileSdkVersion and releaseType of the app do not match the apiVersion and releaseType on the device** is displayed during installation. 18 19### Solution 20 21Check whether the system version matches the HAP version. 22 23### Version Mapping 24 25| Peripheral SDK Name| Minimum API Version| OpenHarmony/HarmonyOS Version| 26| ------------ | ------------ | ------------ | 27| Application development APIs (ArkTS APIs)| API10 | 4.0 or later| 28| USB DDK APIs| API10 | 4.0 or later| 29| HID DDK APIs| API11 | 4.1 or later| 30 31### Symptom 32 33The error message **code:9568347 error: install parse native so failed** is displayed during HAP installation. 34 35### Solution 36 37Configure the value of **abiFilters** in **buildOption/externalNativeOptions** in the **build-profile.json5** file. For details, see [Application Debugging] (https://developer.huawei.com/consumer/en/doc/harmonyos-faqs-V5/faqs-app-debugging-V5). 38 39 ``` 40 "buildOption": { 41 "externalNativeOptions": { 42 "abiFilters": [ 43 "arm64-v8a", 44 "armeabi-v7a," // Mandatory for RK3568 45 "x86_64", 46 ] 47 }, 48 } 49 ``` 50