You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have implemented powersync with success a time ago and not used much because the web was not supported.
Today I tried to update it and use in web and all worked fine. that's great ! But when tried to test mobile platforms (iOS & Android) while using the correct paths as in the docs the app in hanging on db.initialize() while the path is correct.
If I remove the initialize part I have an error stating that "SqliteException(1): Unsupported powersync extension version. Need ˆ0.2.0, got 0.1.6/14f7c2b0".
`
Future getDatabasePath() async {
String path;
if (!kIsWeb) {
final dir = await getApplicationSupportDirectory();
path = join(dir.path, 'noqta-1.db');
} else {
path = 'noqta.db';
}