java.lang.UnsatisfiedLinkError: Couldn't load stlport_shared: findLibrary returned null (tess-two)

后端 未结 4 2665
温柔的废话
温柔的废话 2021-02-20 18:18

I am using sqlcipher.jar for encrypting database in android and also using it\'s native library in

libs/armeabi folder

1)libdatabase_sqlcipher.

4条回答
  •  佛祖请我去吃肉
    2021-02-20 19:15

    I was running into the same issue. First of all, check that all the libraries are correctly imported.

    In my case the problem was that when we added another library project, these project had a armeabi_v7 folder, so apparently if will take precedence over the armeabi folder, meaning that the sqlitecypher libraries won't be located.

    In our case the solution was just to remove the armeabi_v7 folder on the new library.

    Hope it helps.

提交回复
热议问题