Common issues and solutions

Connection issues

Data Synchronization Issues

Debugging tips

Enable verbose logging

Enable detailed logging to help diagnose issues:

final options = PocketSyncOptions(
  // ... other options
  verbose: true,
);

Inspect database

Directly inspect the database to verify data integrity:

final db = PocketSync.instance.database;
final records = await db.query('your_table');
print('Records: $records');

Frequently asked questions

Still need help?

If you’re still experiencing issues:

  1. Check our GitHub repository for known issues
  2. Contact us at hello@pocketsync.dev

Report a bug

Help us improve by reporting bugs and issues you encounter