Xcode 11.3.1 errors when I try to build this plugin, even though Other Linker Flags contains -lsqlite3. I am using capacitor, which includes a compatibility layer for Cordova plugins.
I have tried adding libsqlite.tbd:

And setting CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = YES:

But neither attempt has worked. However, i did fix it by swapping
-#import "sqlite3.h"
+#import <sqlite3.h>
in both MAURSQLiteLocationDAO.m and MAURSQLiteConfigurationDAO.m.
Would you consider accepting a pull request making this change?
Xcode 11.3.1 errors when I try to build this plugin, even though
Other Linker Flagscontains-lsqlite3. I am using capacitor, which includes a compatibility layer for Cordova plugins.I have tried adding

libsqlite.tbd:And setting

CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = YES:But neither attempt has worked. However, i did fix it by swapping
in both
MAURSQLiteLocationDAO.mandMAURSQLiteConfigurationDAO.m.Would you consider accepting a pull request making this change?