Android Kotlin: D/AdobeExperienceSDK: Edge - EdgeExtension - Identity shared state is pending, could not process queued events at this time, waiting... | Community
Skip to main content
September 29, 2021
Solved

Android Kotlin: D/AdobeExperienceSDK: Edge - EdgeExtension - Identity shared state is pending, could not process queued events at this time, waiting...

  • September 29, 2021
  • 1 reply
  • 1255 views

Trying to send event to AEP from Android Kotlin. While request went initially, now we are seeing  Identity shared state is pending and message is not reaching AEP. Want to know what could be the issue.

 

Steps Followed:

Initially Registered following

Edge.registerExtension();
Identity.registerExtension()
Messaging.registerExtension(); // register Messaging

MobileCore.start{
MobileCore.configureWithAppID(ADOBE_LAUNCH_CLIENT_ID)
}

At point where we want to send Event

val xdmData:HashMap<String, Any> = HashMap<String, Any>()

Identity.getExperienceCloudId {
ecid = it // ECID is got successfully
}

xdmData.put(tenantId, reviewXdmData);
val experienceEvent = ExperienceEvent.Builder()
.setXdmSchema(xdmData)
.build()
Edge.sendEvent(experienceEvent, null)

Please suggest what we are missing and how to resolve the issue

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 Kevin_Lind

Hi @ajaydulam 

Can you verify you are using the Identity for Edge Network extension in your application and not the ACP Identity extension? The Edge extension requires the Identity for Edge Network extension. If you need to use both Identity extensions, use the following instructions to set up the extensions

 

Thanks,

Kevin

1 reply

Kevin_LindAdobe EmployeeAccepted solution
Adobe Employee
October 12, 2021

Hi @ajaydulam 

Can you verify you are using the Identity for Edge Network extension in your application and not the ACP Identity extension? The Edge extension requires the Identity for Edge Network extension. If you need to use both Identity extensions, use the following instructions to set up the extensions

 

Thanks,

Kevin