Expand my Community achievements bar.

Join us on September 25th for a must-attend webinar featuring Adobe Experience Maker winner Anish Raul. Discover how leading enterprises are adopting AI into their workflows securely, responsibly, and at scale.

Mark Solution

This conversation has been locked due to inactivity. Please create a new post.

SOLVED

Analytics Request Queued

Avatar

Level 1

I'm trying to implement adobe analytics in an iOS app, but I'm always getting "Analytics Request Queued" in the logs.

"[AdobeExperienceSDK DEBUG <com.adobe.module.analytics>]: Analytics Request Queued"

Initialization code:

ACPCore.setLogLevel(.debug)

ACPCore.configure(withAppId: appID)
       

ACPAnalytics.registerExtension()

ACPMobileServices.registerExtension()

ACPUserProfile.registerExtension()

ACPIdentity.registerExtension()

ACPLifecycle.registerExtension()

ACPSignal.registerExtension()

ACPCore.start {

     ACPCore.lifecycleStart(nil)

}


So the first lifecycle event and every event after that is not being sent and it's being queued.
Can someone point me in the right direction? What might go wrong here?

1 Accepted Solution

Avatar

Correct answer by
Level 1

Hi vedranb27095129, one thought is that you may have a batch limit set for your Analytics hits. Lets say you have a batchLimit set to 3, the Analytics extension won't send hits until you have 3 hits queued. This batch limit can be edited in the Analytics extension in Launch.

You can try using ACPAnalytics.sendQueuedHits() to force send any queued hits.

View solution in original post

1 Reply

Avatar

Correct answer by
Level 1

Hi vedranb27095129, one thought is that you may have a batch limit set for your Analytics hits. Lets say you have a batchLimit set to 3, the Analytics extension won't send hits until you have 3 hits queued. This batch limit can be edited in the Analytics extension in Launch.

You can try using ACPAnalytics.sendQueuedHits() to force send any queued hits.