v2.1.0 - Simplified 4-Field API
🚀 What's New
This release simplifies the SDK to send only 4 fields for maximum privacy:
event_name- What happenedtimestamp- When it happenedsession_id- RAM-only, 2-hour rotationplatform- 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