Unity - Unable to load DLL 'sqlite3'.

Hi
Can anybody help me?

I got this error in Unity while building in android

everything is OK in editor

Unable to load DLL ‘sqlite3’. Tried the load the following dynamic libraries: Unable to load dynamic library ‘sqlite3’ because of 'Failed to open the requested dynamic library (0x06000000) dlerror() = dlopen failed: library “sqlite3” not found

it says that sqlite3 not found, but it exists in Assets/Plugins folder

SOLVED!!!
Replaced files from /Hub/Editor//Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32

to /Assets/Plugins

File List
I18N.MidEast.dll

I18N.Other.dll

I18N.Rare.dll

I18N.West.dll

Mono.Data.Sqlite.dll

System.Data.dll

Also downloaded files github for Android folder ( see in the comments )

You seem to have the answer at the end of this other thread

I found the solution here(c# - Setup Database (SQLite) for Unity - Stack Overflow ), I made 3 folders: x86 (although I have only arm7 and arm64 architectures in the project), armeabi-v7a and arm64-v8a, in them I put the corresponding libsqlite3 file from github, which the author of the answer points to in the paragraph for Android. Everything is working now