Skip to main content

Release Notes

SDK Version Selection

Choose your SDK version below:

  • Apptrove SDK → Recommended for all projects (Latest: v2.0.1)
  • Trackier SDK → Will be deprecated in August 2026 (v1.x.xx)

Use the tabs below to view release notes for your chosen SDK.

This section outlines the release notes for the Apptrove Flutter SDK, highlighting recent updates, new features, enhancements, and bug fixes. These notes are designed to help developers stay informed about the latest changes, ensuring smoother integration, improved performance, and optimal use of the SDK.


note

Ensure all newly integrated SDK versions are fully tested before releasing to production.


Package: apptrove_sdk_flutter

Version 2.0.1 (Latest)


New Features:

  • Added support for deep link object in deferredDeeplinkCallback.
  • deferredDeeplinkCallback now returns an AppTroveDeepLink object (instead of just a URI string), providing structured access to deep link parameters.

Implementation:

import 'package:apptrove_sdk_flutter/apptrove_sdk_flutter.dart';

AppTroveSDKConfig config = AppTroveSDKConfig(key, "production");
config.deferredDeeplinkCallback = (deepLink) {
print("DeepLink URL: ${deepLink.url}");
print("DeepLink Value: ${deepLink.deepLinkValue}");
};
AppTroveFlutterSdk.initializeSDK(config);

What's Included:

  • All Trackier Flutter SDK 1.6.80 features (deep linking, uninstall tracking, ATT, SKAdNetwork, etc.)
  • Unified API under Apptrove naming

Version 2.0.0


New Release:

  • Official Apptrove Flutter SDK release
  • All features from Trackier SDK 1.6.80 included
  • New package: apptrove_sdk_flutter: ^2.0.0
  • Breaking change: Use AppTroveFlutterSdk, AppTroveSDKConfig, AppTroveEvent (replacing Trackier class names)
  • Performance and stability improvements

For further assistance, refer to the Apptrove Documentation Portal or contact support at support@apptrove.com.