Releases: adjust/android_sdk
Releases · adjust/android_sdk
Version 4.38.0
Added
- Added
toMap()
method toAdjustAttribution
class to get all its fields in aMap<String, String>
(thanks to @ntsk). - Added ability to process shortened deep links and provide the unshortened link back as a response. You can achieve this by invoking
processDeeplink(Uri url, Context context, OnDeeplinkResolvedListener callback)
method of theAdjust
instance.
Pull Request #590
Version 4.37.1
Fixed
- Added null check for the
OnDeviceIdsRead
callback object passed toAdjust.getGoogleAdId
method to avoidNullPointerException
.
Changed
- Switched from usage of deprecated
PackageInfo.signatures
toPackageInfo.signingInfo
on devices running Android 9 or later. - Switched from usage of deprecated
Class.newInstance()
toClass.getDeclaredConstructor().newInstance()
on devices running Android 14 or later.
Pull Request #588
Version 4.37.0
Added
- Added a new type of URL strategy called
AdjustConfig.URL_STRATEGY_CN_ONLY
. This URL strategy representsAdjustConfig.URL_STRATEGY_CN
strategy, but without fallback domains. - Added
setReadDeviceInfoOnceEnabled(boolean)
method toAdjustConfig
to indicate if device info to be read only once.
Pull Request #585
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 Getters for certain public classes.
Pull Request #584
Version 4.35.1
Changed
- Added sending of
event_callback_id
parameter (if set) with the event payload. - Updated Gradle version 8.1.1 and publishing plugins as aar.
Pull Request #582
Version 4.35.0
Added
- Added support for SigV3 library. Update authorization header building logic to use
adj_signing_id
. - Added
setFinalAttributionEnabled(boolean)
method toAdjustConfig
to indicate if only final 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).
Pull Request #580
Version 4.34.0
Added
- Added support for purchase verification. In case you are using this feature, you can now use it by calling
verifyPurchase
method of theAdjust
instance.
Pull Request #579
Version 4.33.5
Version 4.33.4
Changed
- Updated Samsung Install Referrer library version to 3.0.1.
- Updated IMEI reading attempt to only once.
Pull Request #573
Version 4.33.3
Fixed
- Added catching of exceptions in referrer plugins when thrown anytime while retrieving referrer.
Pull Request #568