Skip to main content

Release Notes

This section outlines the release notes for the Expo 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.

Version 1.6.78 (Latest)


New Features

  • Added Expo auto-linking support for Google Mobile Services (GMS) dependency

Implementation: Add the Trackier plugin to your app.json and run npx expo prebuild to auto-link GMS dependency:

{
"expo": {
"plugins": [
"./node_modules/trackier-expo-sdk/app.plugin.js"
]
}
}

Version 1.6.77


New Features

  • Added App Tracking Transparency (ATT) support for iOS with waitForATTUserAuthorization() method
  • Added Deferred Deep Linking support for iOS with subscribeDeeplink() method
  • Added SKAdNetwork postback conversion tracking with updatePostbackConversion() method

Implementation:

// ATT Support (iOS)
TrackierSDK.waitForATTUserAuthorization(20);

// Deferred Deep Linking (iOS)
TrackierSDK.subscribeDeeplink();

// SKAdNetwork Conversion (iOS)
TrackierSDK.updatePostbackConversion(5);

Version 1.6.76


New Features

  • Added Encryption functions.

Version 1.6.75


New Features

  • Meta Install referrer And Android Id Support
 // Set Facebook App ID for Meta attribution (Android)
trackierConfig.setFacebookAppId("123456789012345"); // Replace with your actual Facebook App ID

// Set custom Android ID for device identification (Android)
trackierConfig.setAndroidId("custom_android_device_id_123"); // Replace with your custom Android ID

Version 1.6.73


New Features

  • Dynamic deep links
  • Function for resolved deep links
  • Region functions

Bug Fixes

  • Fixed setUserAdditionalDetails function