내 커뮤니티 업적 표시줄을 확대합니다.

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

활동이 없어 이 대화는 잠겼습니다. 새 게시물을 작성해 주세요.

해결됨

Default tracking for actions or states for mobile app

Avatar

Level 3

Hi, given my minimal understanding of app tracking, I would like to understand if there are any standard actions or states that could be tracked for mobile app with no coding.

Just like how page view event could be implemented for web ootb or through analytics extension without really needing to pass a page view event in the datalayer. Is there a similar approach to track any default app actions or states either through launch or maybe Firebase?

1 채택된 해결책 개

Avatar

정확한 답변 작성자:
Level 4

For Web, the page view calls are triggered every time s.t() is called explicitly on every page load.  Likewise, for apps, MobileCore.trackState() needs to be called at every screen load.

 

Only reason why web implementation seems easier is because Launch being a JavaScript library where we have greater control on the pages. But even that sometimes get trickier for pages like SPA, hence we use direct call rules or event driven data layers. In case of Apps, we dont have much control from Launch side hence we need developers to call the method on all pages. 

원본 게시물의 솔루션 보기

2 답변 개

Avatar

Community Advisor and Adobe Champion

Basically no if we talk about Adobe solutions only. Adobe mobile SDK, old and new, requires you to code for tracking explicitly. Even for websites, you need to explicitly send beacons using Launch or calling s.t() or s.tl() for tracking.

Avatar

정확한 답변 작성자:
Level 4

For Web, the page view calls are triggered every time s.t() is called explicitly on every page load.  Likewise, for apps, MobileCore.trackState() needs to be called at every screen load.

 

Only reason why web implementation seems easier is because Launch being a JavaScript library where we have greater control on the pages. But even that sometimes get trickier for pages like SPA, hence we use direct call rules or event driven data layers. In case of Apps, we dont have much control from Launch side hence we need developers to call the method on all pages.