gpt4 book ai didi

ios - Unity Firebase Analytics 事件未显示

转载 作者:行者123 更新时间:2023-12-01 16:23:42 24 4
gpt4 key购买 nike

我将 Firebase 插件放入我的 Unity 应用程序中,一切正常(Android 版本)。我尝试使用 iOS 版本,但它没有记录事件。我知道这些事件需要几个小时才能出现,但它们在 1 天后或在 Debug模式下都没有出现。

对于 Debug模式,我放置了“-FIRAnalyticsDebugEnabled”参数,就像教程 (https://firebase.google.com/docs/analytics/ios/events#view_events_in_the_xcode_debug_console) 一样。在另一个站点 ( https://support.google.com/firebase/answer/7201382?hl=pt&utm_id=ad ) 上,我意识到还有另一个参数“-FIRDebugEnabled”。我尝试了两个,但没有一个记录我的事件。

我注意到的另一件事是,我在 Firebase 网站上下载的“GoogleService-Info.plist”文件带有变量“IS_ANALYTICS_ENABLED”= false。它在教程 ( https://firebase.google.com/docs/analytics/unity/start?hl=pt-br ) 中没有说明任何内容,但我说的是真的。

我做错了什么吗?

编辑(日志):

2017-05-29 12:54:41.638343 brincando[22620:5072036] [Firebase/Analytics][I-ACS023105] Event is not subject to real-time event count daily limit. Marking an event as real-time. Event name, parameters: 
post_score,
{
firebase_screen_id (_si) = -396951154609863799;
score = 42;
firebase_screen_class (_sc) = UnityDefaultViewController;
firebase_realtime (_r) = 1;
firebase_debug (_dbg) = 1;
firebase_event_origin (_o) = app;
}
2017-05-29 12:54:41.640 brincando[22620] <Debug> [Firebase/Analytics][I-ACS023105] Event is not subject to real-time event count daily limit. Marking an event as real-time. Event name, parameters:
post_score,
{
firebase_screen_id (_si) = -396951154609863799;
score = 42;
firebase_screen_class (_sc) = UnityDefaultViewController;
firebase_realtime (_r) = 1;
firebase_debug (_dbg) = 1;
firebase_event_origin (_o) = app;
}

2017-05-29 12:54:41.646107 brincando[22620:5072192] [Firebase/Analytics][I-ACS012018] Saving bundle. size (bytes): 415
2017-05-29 12:54:41.648 brincando[22620] <Debug> [Firebase/Analytics][I-ACS012018] Saving bundle. size (bytes): 415

2017-05-29 12:54:41.657411 brincando[22620:5072026] [Firebase/Analytics][I-ACS023116] Bundle added to the upload queue. BundleID, timestamp (ms): 13, 1496073280620
2017-05-29 12:54:41.658 brincando[22620] <Debug> [Firebase/Analytics][I-ACS023116] Bundle added to the upload queue. BundleID, timestamp (ms): 13, 1496073280620

2017-05-29 12:54:41.678965 brincando[22620:5072026] [Firebase/Analytics][I-ACS023038] Uploading events. Elapsed time since last successful upload (s): 21.54594898223877
2017-05-29 12:54:41.679 brincando[22620] <Debug> [Firebase/Analytics][I-ACS023038] Uploading events. Elapsed time since last successful upload (s): 21.54594898223877

2017-05-29 12:54:41.681181 brincando[22620:5072026] [Firebase/Analytics][I-ACS023039] Measurement data sent to network. Timestamp (ms), data: 1496073281675, <FIRAPBMeasurementBatch: 0x170016af0>
2017-05-29 12:54:41.681 brincando[22620] <Debug> [Firebase/Analytics][I-ACS023039] Measurement data sent to network. Timestamp (ms), data: 1496073281675, <FIRAPBMeasurementBatch: 0x170016af0>

2017-05-29 12:54:41.690525 brincando[22620:5072050] [Firebase/Analytics][I-ACS900000] Uploading data. Host: https://app-measurement.com/a
2017-05-29 12:54:41.690 brincando[22620] <Debug> [Firebase/Analytics][I-ACS900000] Uploading data. Host: https://app-measurement.com/a

2017-05-29 12:54:41.747085 brincando[22620:5072192] [Firebase/Analytics][I-ACS901006] Received SSL challenge for host. Host: https://app-measurement.com/a
2017-05-29 12:54:41.747 brincando[22620] <Debug> [Firebase/Analytics][I-ACS901006] Received SSL challenge for host. Host: https://app-measurement.com/a

2017-05-29 12:54:41.849945 brincando[22620:5072050] [Firebase/Analytics][I-ACS023044] Successful upload. Got network response. Code, size: 204, 0
2017-05-29 12:54:41.850 brincando[22620] <Debug> [Firebase/Analytics][I-ACS023044] Successful upload. Got network response. Code, size: 204, 0

2017-05-29 12:54:41.860015 brincando[22620:5072036] [Firebase/Analytics][I-ACS002002] Measurement timer scheduled to fire in approx. (s): -0.2379031181335449
2017-05-29 12:54:41.860 brincando[22620] <Debug> [Firebase/Analytics][I-ACS002002] Measurement timer scheduled to fire in approx. (s): -0.2379031181335449

2017-05-29 12:54:41.860374 brincando[22620:5072036] [Firebase/Analytics][I-ACS023028] Upload task scheduled to be executed in approx. (s): -0.2379031181335449
2017-05-29 12:54:41.860 brincando[22620] <Debug> [Firebase/Analytics][I-ACS023028] Upload task scheduled to be executed in approx. (s): -0.2379031181335449

2017-05-29 12:54:41.878356 brincando[22620:5072050] [Firebase/Analytics][I-ACS023024] No data to upload. Upload task will not be scheduled
2017-05-29 12:54:41.878 brincando[22620] <Debug> [Firebase/Analytics][I-ACS023024] No data to upload. Upload task will not be scheduled

2017-05-29 12:54:41.878814 brincando[22620:5072050] [Firebase/Analytics][I-ACS002003] Measurement timer canceled
2017-05-29 12:54:41.880 brincando[22620] <Debug> [Firebase/Analytics][I-ACS002003] Measurement timer canceled

最佳答案

这可能是一个迟到的答案,但我仔细检查了其他解决方案,仍然有类似的问题。

  • 确保所有事件参数都带有一个值且不为空。

  • 启用“-FIRAnalyticsDebugEnabled”标志

  • 启用“-FIRDebugEnabled”标志

关于ios - Unity Firebase Analytics 事件未显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44248068/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com