Dlopen failed: library "/system/lib64/libhwuibp.so" not found: 64-bit processor with eight eight eight eight eight

Whenever I try to open the camera / gallery with intent, I get this error on my case of 4C mobile, Android version 6.0 with 64-bit octane core.

load: so = / system / lib64 / libhwuibp.so

dlopen failed: library "/system/lib64/libhwuibp.so" not found

Basically I am trying to crop the image using OpenCV-2.4.13.1-android-sdk so file. But this error seems to be related to the device, as in other mobile applications, the application works fine, can someone help me with this?

+4
source share
1 answer

Have you tried this solution?

Hi, I searched online these days and finally found a solution! If you are using android studio, just edit gradle.propertiesto the root folder and add android.useDeprecatedNdk=true. Then edit build.gradlein the folder of your application, install abiFiltersas shown below:

android {
    ....
    defaultConfig {
        ....
        ndk {
            abiFilters "armeabi", "armeabi-v7a", "x86", "mips"
        }
    }
}

source: https://github.com/yixia/VitamioBundle/issues/305

+1
source

Source: https://habr.com/ru/post/1656586/


All Articles