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

Failed to resolve SQLitePCL.delegate_progress_handler reference #476

Closed nlough closed 2 years ago

nlough commented 2 years ago

I'm working on an old Xamarin project which builds fine other than in the following circumstance - switch to iOS as start up and set to Release mode. I get the following error: Failed to resolve "SQLitePCL.delegate_progress_handler" reference from "SQLitePCLRaw.core, Version=1.1.14.520, Culture=neutral, PublicKeyToken=1488e028ca7ab535" NUConnect.iOS. I've attached a screenshot of related SQLLite installs
Capture

Would appreciate any help

ericsink commented 2 years ago

You would need to remove the reference to provider.sqlite3.ios_unified. That is from SQLitePCLRaw 1.x, which cannot be mixed with pieces of 2.x.

nlough commented 2 years ago

Thank you