Expandir la barra de logros de la comunidad.

Submissions are now open for the 2026 Adobe Experience Maker Awards.

Mark Solution

Esta conversación ha sido bloqueada debido a la inactividad. Cree una nueva publicación.

RESUELTAS

Push notification auto opt out

Avatar

Level 2

The Android app I'm working on has Adobe Mobile Services SDK4 implemented and push notification was set up for it.

Push notification is working fine, however occasionally I run into the trouble of not receiving push notifications. When I check the logs in Charles, I noticed that sometimes there's a lifecycle call being sent from the SDK that opts me out.

1760608_pastedImage_5.png

Questions is, what could be the trigger of causing this lifecycle call which is sending push.optIn as 'False'? On app reinstall, a lifecycle call that sends push.optIn as 'True' is triggered and I'm able to receive push notification again.

In the ADBMobileConfig.json, "privacyDefault" was also set as "optedin".

Did not encounter this issue in iOS.

Temas

Los temas ayudan a categorizar el contenido de la comunidad e incrementan la posibilidad de encontrar contenido relevante.

1 solución aceptada

Avatar

Respuesta correcta de
Employee

attrdata-shenlitan​,

This hit is sent when the below app code method is called. 

Config.setPushIdentifier(token);

For example, in order to designate that a user has opted-out of push, you would call `Config.setPushIdentifier(null);`  and for true it would be the token.

Jen

Ver la solución en mensaje original publicado

3 Respuestas

Avatar

Respuesta correcta de
Employee

attrdata-shenlitan​,

This hit is sent when the below app code method is called. 

Config.setPushIdentifier(token);

For example, in order to designate that a user has opted-out of push, you would call `Config.setPushIdentifier(null);`  and for true it would be the token.

Jen

Avatar

Level 2

Thanks Jen!

Avatar

Level 1

tanks  u

a