0

我想在我的 android 应用程序中查看分析,但我正在努力设置 Adob​​e Launch 和 Analytics。

我在应用程序本身中设置了 Mobile Core 和 Analytics。而且它在运行时不会产生任何错误。

MobileCore.setApplication(this)
        MobileCore.setLogLevel(LoggingMode.DEBUG)
        try {
            MobileServices.registerExtension()
            Analytics.registerExtension()
            Lifecycle.registerExtension()
            MobileCore.start { MobileCore.configureWithAppID("app-id-here") }
        } catch (e: Exception) {
            // Log
        }

并在 Adob​​e Launch 中创建了属性,添加了所需的相关扩展、设置环境和发布库。我现在出版了一个图书馆。但不知道如何查看从应用程序收集的数据?我想念什么是 Launch 吗?对此的任何帮助将不胜感激。

4

4 回答 4

2

注册完成后,您可以在应用程序日志“AdobeExperienceSDK”中查看日志,但要查看您需要登录 AEP 仪表板门户的实际事件。

有关设置和说明,请访问 Adob​​e Launch 的以下官方网址

https://experienceleague.adobe.com/docs/launch-learn/implementing-in-mobile-android-apps-with-launch/configure-launch/launch-install-the-mobile-sdk.html?lang=en#先决条件

于 2021-04-12T12:10:57.610 回答
0

您也可以使用https://aep-sdks.gitbook.io/docs/using-mobile-extensions/adobe-experience-platform-assurance,它可以让您在 Adob​​e Griffon 界面中看到 Adob​​e Launch 控制台/调试说明。一次性的事情有点矫枉过正,但是如果您要在应用程序中花费大量时间使用Launch,则可能值得设置。

于 2021-04-21T19:28:25.553 回答
0

我可能误解了您的问题,但如果您询问如何查看您发送给 Adob​​e 的数据的聚合,您的请求包含您发送信息的存储库的地址。您需要登录 Adob​​e Analytics 才能查看您发送的内容。

于 2020-03-02T18:35:29.750 回答
0

您需要设置事件来跟踪屏幕视图。例子:

Analytics.trackState("Screen Name", null); 

官方文档:

https://docs.adobe.com/content/help/en/mobile-services/android/analytics-android/states.html

于 2020-03-11T22:01:11.407 回答