In the Maui docs for SQLite, it says to install two Nuget packages:
sqlite-net-pcl
SQLitePCLRaw.bundle_green
In the description for the second Nuget package SQLitePCLRaw.bundle_green, it says:
In addition to sqlite-net-pcl, you temporarily need to install the underlying dependency that exposts SQLite on each platform... continues with metadata about the package
It doesn't say anything about this cryptic message for the rest of the document (as far as I can tell).
What does this mean? Should I install the package, build the project, and uninstall it? If so, why? Is "exposing SQLite" a thing that only happens once?
EDIT: it turns out I was adding more meaning to the cryptic message than is necessary.
Here's what the statement means:
We need this second Nuget package because it does some things that the first package doesn't do; hopefully adding the second package will be a temporary fix, as we hope to soon add the thing that the second package does to the first package, making the second package unnecessary.