Releases: adjust/unity_sdk
Releases · adjust/unity_sdk
Version 4.37.2
Fixed
- Fixed occasional invalid signature cases in Android when SDK package payload would be altered right before sending.
Changed
- Added tracking of
third_party_sharing
andmeasurement_consent
packages if invoked before SDK initialization in subsequent SDK initializations.
Native SDKs
Pull Request #289
Version 4.37.1
Added
- Added support for
TradPlus
ad revenue tracking.
Changed
- Changed the semantics of the
AdjustAppStorePurchase
'sreceipt
property to represent UnityIAP base64 encoded receipt string to avoid the need for the base64 decoding by the clients.
Native SDKs
Pull Request #287
Version 4.37.0
Added
- Added ability to process shortened deep links and provide the unshortened link back as a response. You can achieve this by invoking
processDeeplink
method of theAdjust
instance. - Added ability to inject iOS in-app purchase receipt directly as base64 encoded string when you are performing purchase event verification. You can achieve this by passing the base64 encoded string receipt via
setReceiptBase64
method of theAdjustEvent
instance.
Native SDKs
Pull Request #285
Version 4.36.0
Added
- Added support for Meta install referrer.
- Added support for Google Play Games on PC.
- Added support for
TopOn
andAD(X)
ad revenue tracking. - Added a new type of URL strategy called
AdjustConfig.AdjustUrlStrategyCnOnly
. This URL strategy representsAdjustConfig.AdjustUrlStrategyCn
strategy, but without fallback domains. - Added
setReadDeviceInfoOnceEnabled(bool)
method toAdjustConfig
to indicate if Android device info should be read only once.
Native SDKs
Pull Request #282
Version 4.35.2
Added
- Added sending of
event_callback_id
parameter (if set) with the event payload.
Native SDKs
Pull Request #280
Version 4.35.1
Fixed
- Fixed issue with signing iOS requests post ATT delay timer expiry.
Native SDKs
Pull Request #279
Version 4.35.0
Added
- Added support for SigV3 library. Update authorization header building logic to use
adj_signing_id
. - Added
setAndroidFinalAttributionEnabled
method toAdjustConfig
to indicate if only final Android attribution is needed in attribution callback (by default attribution callback return intermediate attribution as well before final attribution if not enabled with this setter method).
Native SDKs
Pull Request #278
Version 4.34.1
Added
- Added more logging around ATT delay timer feature to indicate that it's activated.
Fixed
- Fixed issue where subsequent calls to active state callback would make ATT delay timer elapse sooner.
- Removed unnecessary
AdjustSettings.asset
file out of.unitypackage
.
Native SDKs
Pull Request #276
Version 4.34.0
Added
- Added ability to delay SDK start on iOS platform in order to wait for an answer to the ATT dialog. You can set the number of seconds to wait (capped internally to 120) by calling the
setAttConsentWaitingInterval
method of theAdjustConfig
instance. - Added support for purchase verification. In case you are using this feature, you can now use it by calling
verifyAppStorePurchase
(for iOS) andverifyPlayStorePurchase
(for Android) methods of theAdjust
instance.
Native SDKs
Pull Request #275