Expand my Community achievements bar.

Not able to track analytics events in IOS

Avatar

Level 2

I have implemented Adobe analytics in my code and pasted coded below. I have tested with iphone 12 (ios 14) but I am not able to see any events in  dashboard.

 

Could you please help me out what might cause issue.

 

 

please check below snippet code.

 

ACPCore.configure(withAppId: "My id")

        ACPAnalytics.registerExtension()

        ACPGriffon.registerExtension()

        ACPTarget.registerExtension()

        ACPMobileServices.registerExtension()

        ACPIdentity.registerExtension()

        ACPLifecycle.registerExtension()

        ACPSignal.registerExtension()

        ACPUserProfile.registerExtension()

        

        ACPCore.setLogLevel(.error)

        #if DEBUG

        ACPCore.setLogLevel(.debug)

        #endif

        

        ACPCore.start {

            ACPIdentity.getExperienceCloudId { experienceCloudId in

                if state != .background {

                    Self.enableLifeCycle(true)

                }

            }

            

            

        }

0 Replies