Release Notes
This section outlines the release notes for the Cordova 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.
Ensure all newly integrated SDK versions are fully tested before releasing to production
.
Version 1.6.75 (Latest)
New Features:
- Added support for Facebook App ID configuration for Meta Install Referrer integration.
- Added support for Android ID configuration for enhanced device tracking.
- Added support for API region selection to improve performance and data localization.
- Added Dynamic Deep Link support for creating custom deep links programmatically.
- Added Deeplink Resolver API support for processing and resolving deeplink URLs.
- Added device information tracking with IMEI and MAC address support.
Implementation:
var trackierConfig = new TrackierConfig("your-app-token", TrackierEnvironment.Production);
trackierConfig.setFacebookAppId("your_facebook_app_id"); // For Meta Install Referrer
trackierConfig.setAndroidId("your_android_id"); // For enhanced tracking
trackierConfig.setRegion(TrackierRegion.IN); // For India region
TrackierCordovaPlugin.initializeSDK(trackierConfig);
Version 1.6.74
SDK Maintenance:
- Updated iOS dependency to use trackier-ios-sdk version 1.6.74 with Alamofire version upgrade for improved network performance and compatibility.
- Updated Android dependency to use trackier-android-sdk version 1.6.73 for enhanced stability.
Version 1.6.64
New Features:
- Added support for Deferred Deeplinking on Android.
TrackierSDK.setDeferredDeeplinkCallbackListener(url);
- Integrated Apple Search Ads Token functionality on iOS for enhanced attribution.
TrackierSDK.updateAppleAdsToken("Your Token");
Version 1.6.59
Bug Fixes:
- Resolved an issue in the iOS Podspec configuration for better dependency management and build stability.
Version 1.6.57
SDK Maintenance:
- SDK version upgraded for enhanced stability and compatibility.
Version 1.6.56
SDK Maintenance:
-
Implemented local tracking system to improve offline attribution reliability.
-
Version upgraded with performance improvements.
Version 1.6.49
SDK Maintenance:
- Improved SDK Signing Code to enhance security and integrity during builds.
Version 1.6.48
New Features:
- Added support for Demographic Data Tracking to facilitate advanced user segmentation.
TrackierSDK.setGender(Gender.MALE or FEMALE)
TrackierSDK.setDOB("34/32/4232")
Version 1.6.47
New Features:
- Integrated Campaign Data Functions for improved campaign-level attribution.
TrackierSDK.getAd().then(val => console.log('===getAD: ', val)).catch(e => console.log('==error: ', e))
TrackierSDK.getCampaign().then(val => console.log('===getCampaign: ', val)).catch(e => console.log('==error: ', e))
TrackierSDK.getCampaignID().then(val => console.log('===getCampaignID: ', val)).catch(e => console.log('==error: ', e))
TrackierSDK.getAdSet().then(val => console.log('===getAdSet: ', val)).catch(e => console.log('==error: ', e))
// And More
Version 1.6.45
SDK Maintenance:
- SDK version upgraded to align with recent platform changes.
Version 1.6.29
SDK Maintenance:
-
SDK updated to be fully compatible with the Awesome Cordova Plugin architecture.
-
Ensures smooth integration with newer Ionic apps.
-
Use the updated ZIP package as per the integration guide in the README.
Version 1.6.16
New Features:
- Introduced Testing Mode Support to allow developers to test SDK events without affecting production analytics.
TrackierEnvironment.Testing