Releases: adjust/flutter_sdk
Releases · adjust/flutter_sdk
Version 4.35.2
Added
- Added sending of
event_callback_id
parameter (if set) with the event payload.
Native SDKs
PR: #119
Version 4.35.1
Version 4.35.0
Added
- Added support for SigV3 library. Update authorization header building logic to use
adj_signing_id
. - Added ability 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) by setting the
androidFinalAttributionEnabled
member of theAdjustConfig
instance.
Native SDKs
PR: #117
Version 4.34.0
Added
- Added support for Android apps using Gradle 8.0 or later.
- 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 setting the
attConsentWaitingInterval
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
PR: #115
Version 4.33.1
Version 4.33.0
Added
- Added support for SKAD 4.0.
- Added support for setting a new China URL Strategy. You can choose this setting by setting
urlStrategy
member ofAdjustConfig
instance toAdjustConfig.UrlStrategyCn
value.
Native SDKs
PR: #101
Version 4.32.0
Added
- Added partner sharing settings to the third party sharing feature.
- Added
getLastDeeplink
getter toAdjust
API to be able to get last tracked deep link by the SDK for iOS platform.
Changed
- Switched to adding permission
com.google.android.gms.permission.AD_ID
in the Android app's manifest by default.
Native SDKs
PR: #94
Version 4.31.0
Added
- Added support for
LinkMe
feature. - Added support to get Facebook install referrer information in attribution callback.
Native SDKs
PR: #86
Version 4.30.0
Added
- Added ability to mark your app as COPPA compliant. You can enable this setting by setting
coppaCompliantEnabled
member ofAdjustConfig
instance totrue
. - Added ability to mark your Android app as app for the kids in accordance to Google Play Families policies. You can enable this setting by setting
playStoreKidsAppEnabled
member ofAdjustConfig
instance totrue
. - Added
checkForNewAttStatus
method toAdjust
API to allow iOS apps to instruct to SDK to check ifatt_status
might have changed in the meantime. - Added support for Generic ad revenue tracking.
Changed
- Reverted
compileSdkVersion
from32
to31
(#77). - Changed responses which is being returned when iOS specific API is being called on Android platform (#79 and #80).
Native SDKs
Kudos
Big thank you to @namini40 and @tsuruobiz for contributions to this release.
PR: #84
Version 4.29.2
Added
- Added support for
Unity
ad revenue tracking. - Added support for
Helium Chartboost
ad revenue tracking.
Changed
- Removed deprecated v1 way of plugin registration (#64). Thanks to @cungtrang0978 for reporting.
- Migrated from
jcenter
tomavenCentral
repository (#72). Thanks to @fbcouch for contribution.