Merge branch 'develop' into beta

This commit is contained in:
Simon Binder 2019-09-23 23:12:29 +02:00
commit cef3fd0bbe
No known key found for this signature in database
GPG Key ID: 7891917E4147B8C0
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ DynamicLibrary _defaultOpen() {
if (Platform.isMacOS || Platform.isIOS) {
// todo when we use a dev version of Dart 2.6, we can (and should!!) use DynamicLibrary.executable() here
// return DynamicLibrary.executable();
return DynamicLibrary.open('libsqlite3.dylib');
return DynamicLibrary.open('/usr/lib/libsqlite3.dylib');
}
if (Platform.isWindows) {
return DynamicLibrary.open('sqlite3.dll');