Skip to content

v2.1.0 - Simplified 4-Field API

Choose a tag to compare

@loheden loheden released this 27 Dec 00:29
· 3 commits to main since this release

🚀 What's New

This release simplifies the SDK to send only 4 fields for maximum privacy:

  • event_name - What happened
  • timestamp - When it happened
  • session_id - RAM-only, 2-hour rotation
  • platform - iOS, Android, macOS, Linux, Windows

⚠️ Breaking Changes

screen parameter removed from track()

- await Respectlytics.track('purchase', screen: 'CheckoutScreen');
+ await Respectlytics.track('purchase');

If you need screen context, include it in your event name:

await Respectlytics.track('checkout_screen_purchase');

📦 Installation

dependencies:
  respectlytics_flutter: ^2.1.0

✅ Test Coverage

  • 26 unit tests
  • 7 integration tests
  • All tests passing

📖 Full Documentation

https://respectlytics.com/sdk/