missed any steps when using app message push in AJO journey/campain on an android device | Community
Skip to main content
Level 2
April 11, 2024
Solved

missed any steps when using app message push in AJO journey/campain on an android device

  • April 11, 2024
  • 3 replies
  • 1273 views

I'm trying to use AJO journey on an android device in app message push, and I can't receive the message.
I have done:


1.Created an android app, integrated with firebase SDK, I can use firebase web console to send messages.


2.The android app adds the following code.

 

#app/src/main/AndroidManifest.xml

uses-permissionandroid:name="android.permission.POST_NOTIFICATIONS"/

 

#app/build.gradle.kts

implementation(platform("com.adobe.marketing.mobile:sdk-bom:3.0.0"))

 

implementation("com.adobe.marketing.mobile:analytics")

implementation("com.adobe.marketing.mobile:userprofile")

implementation("com.adobe.marketing.mobile:messaging")

implementation("com.adobe.marketing.mobile:edgeconsent")

implementation("com.adobe.marketing.mobile:edgeidentity")

implementation("com.adobe.marketing.mobile:assurance")

implementation("com.adobe.marketing.mobile:edge")

implementation("com.adobe.marketing.mobile:core")

implementation("com.adobe.marketing.mobile:identity")

implementation("com.adobe.marketing.mobile:lifecycle")

implementation("com.adobe.marketing.mobile:signal")

 

#app\src\main\java\com\test\conti\java\MainActivity.java

MobileCore.configureWithAppID(ENVIRONMENT_FILE_ID);

MobileCore.setPushIdentifier(token);

 

3.Created appSurface in data collection
4.Created a tag in the data collection,
5.I can see the event through Assurance and pin code
6.The following extensions have been installed: and publish

Can you help me check if I have missed any steps?

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by Mohan_Dugganab

Can you try the debugging steps mentioned in this link https://experienceleague.adobe.com/en/docs/experience-platform/assurance/view/push-debug-view 

3 replies

YizhouPeAuthor
Level 2
April 11, 2024

I can see some warning log in android studio logcat console :

 MobileCore/EventHub - Unable to retrieve STANDARD shared state for "com.adobe.module.places". No such extension is registered.

 Analytics/AnalyticsState - update - Unable to extract data for com.adobe.module.places, it was null.
 Analytics/AnalyticsExtension - track - Dropping the Analytics track request, Analytics is not configured.
 
I'm not sure if this is related to this issue
 
Mohan_Dugganab
Adobe Employee
Mohan_DugganabAdobe EmployeeAccepted solution
Adobe Employee
April 15, 2024
Manoj_Kumar
Community Advisor
Community Advisor
April 15, 2024

Hello @yizhoupe 

 

My suggestion would be use the AEP Assurance to see the logs and test the push notifications

 

When push notification is granted do you see the token populated in profile?

Manoj     Find me on LinkedIn
YizhouPeAuthor
Level 2
April 17, 2024

Okay, I noticed that the schema is missing. The issue has been resolved. Thank you

October 8, 2024

I followed the same steps, AEP assurance shows that everything is good for push, but still im not receiving anything on the device, however im able to receive messages from FCM direct API, was there any additional steps you did?