You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to get the Adid in my async storage so I get this code
` adjustConfig.setSessionTrackingSucceededCallbackListener(
(sessionSucceeded) => {
Adjust.getAdid((adid) => {
if (adid) {
asyncStorage.setItem('adjust:adid', adid)
}
})
logger.log(
'[Adjust] session tracking succeeded :' +
JSON.stringify(sessionSucceeded)
)
}
)`
This is working on IOS but on android it fails and trigger this
`adjustConfig.setSessionTrackingFailedCallbackListener((sessionFailed) => {
logger.log(
'[Adjust] session tracking failed :' +
JSON.stringify(sessionFailed) +
' config : ' +
JSON.stringify(adjustConfig)
)
})`
I've got the error Data residency policy violation with adjustConfig.setUrlStrategy(AdjustConfig.DataResidencyEU)
OR the error Session failed (device is opted out) without
Thank you for your help
The text was updated successfully, but these errors were encountered:
It seems like your test device at some point in time invoked Adjust.gdprForgetMe method and is because of that opted out from any further tracking by Adjust. Could it be that you invoked that method at some point in the past?
Hello @uerceg,
Indeed, I already call Adjust.gdprForgetMe in the past. I gradually delete the test accounts during my testing with calling Adjust.gdprForgetMe.
Hello,
I have a problem on android.
I want to get the Adid in my async storage so I get this code
` adjustConfig.setSessionTrackingSucceededCallbackListener(
(sessionSucceeded) => {
Adjust.getAdid((adid) => {
if (adid) {
asyncStorage.setItem('adjust:adid', adid)
}
})
I've got the error
Data residency policy violation
withadjustConfig.setUrlStrategy(AdjustConfig.DataResidencyEU)
OR the error
Session failed (device is opted out)
withoutThe text was updated successfully, but these errors were encountered: