ericsink / SQLitePCL.raw

A Portable Class Library (PCL) for low-level (raw) access to SQLite
Apache License 2.0
512 stars 106 forks source link

Unity android support #464

Open AlexSchuetz opened 2 years ago

AlexSchuetz commented 2 years ago

I have a NET-standard library that uses SQLitePCLRaw.bundle_green (over sqlite-net-pcl).

Since in Unity nuget doesn't work. I copy all the needed libraries and dlls manually. Especially libraries from 'sqlitepclraw.lib.e_sqlite3.2.0.7'->runtimes.

I used the following configurations:

This works correct on windows. But on Oculus Quest 2 I get an error that the dll "e_sqlite3" is not found. The Oculus Quest 2 is based on android. CPU: ARMv8-A

Which library would I have to use?

AlexSchuetz commented 2 years ago

I now compiled the library myself and used the libraries I found in cb\bld\bin\e_sqlite3\android.

I would prefer using libraries extracted from a nuget-package, so that everything is reproducible and that versions fit.

Unfortunately I didn't find a package containing these libraries. Can you tell me where I can find them?