没有数据显示在Flurry Realtime中

问题描述 投票:0回答:1

我正在将数据发送到Flurry(Unity,iOS,XCode)。不知道为什么我在实时仪表板中没有任何活动。我使用了最新的SDK。

我三遍检查了我的API密钥。有什么主意吗?

XCODE日志(似乎正在发送数据):

2020-03-21 12:40:42.843425+0100 speedyboarding[1287:418400] -[FlurryStreamCoreBuffer streamMessage:]: msg = <FlurryStreamReporting: 0x281692bc0, type = 164, json = {   "fl.continue.session.millis" : 10000,   "fl.initial.timestamp" : 1584784908367,   "fl.session.event" : "SESSION_PAUSE",   "fl.session.timestamp" : 1584790842841,   "fl.session.state" : 0 }>
-> applicationDidEnterBackground()

统一脚本:

using UnityEngine;

using FlurrySDK;

public class FlurryStart : MonoBehaviour
{

#if UNITY_ANDROID
    private readonly string FLURRY_API_KEY = FLURRY_ANDROID_API_KEY;
#elif UNITY_IPHONE
    private readonly string FLURRY_API_KEY = "xxxxxxxxxx";
#else
    private readonly string FLURRY_API_KEY = null;
#endif

    void Start()
    {
        // Initialize Flurry once.
        new Flurry.Builder()
                  .WithCrashReporting(true)
                  .WithLogEnabled(true)
                  .WithLogLevel(Flurry.LogLevel.LogVERBOSE)
                  .WithAppVersion("0.2.5")
                  .Build(FLURRY_API_KEY)


    }
}
flurry flurry-analytics
1个回答
0
投票

请把完整的控制台日志发送到[email protected],我会仔细看。

© www.soinside.com 2019 - 2024. All rights reserved.