1

我正在尝试在我们的应用程序的新版本中实现 Flurry,但没有收到任何事件发送到 Flurry 控制台/站点。

我正在使用 Flurry SDK 5.60 并尝试了很多不同的东西,我Analytics report sent在日志中收到消息,这让我认为一切正常。

为了测试,我正在更改应用程序版本号,我可以在 Flurry 站点/控制台上的事件日志中看到新版本号在我使用应用程序后大约 5-10 分钟出现,除了它说没有事件版本。

我在 onCreate 的扩展应用程序类中设置 Flurry

public class App extends Application {

public static final String KEY = "FD**************QZ";

@Override
public void onCreate() {
    super.onCreate();

    FlurryAgent.setLogEnabled(true);
    FlurryAgent.setLogLevel(Log.VERBOSE);
    FlurryAgent.init(this, KEY);

}

}

然后,在我的应用程序中,我使用 FlurryAgent.LogEvent() 发送事件

switch (position) {
    case 0:
        fragment = OneFragment.newInstance("ONE");
        FlurryAgent.logEvent("ONE PRESSED");
        break;
    default:
        fragment = TwoFragment.newInstance("TWO");
        FlurryAgent.logEvent("TWO PRESSED");
        break;
}

以下是我的应用程序测试运行日志。我启动它,单击我的按钮发送消息,然后关闭应用程序(在最近列表中将其滑开)并再次启动它,以强制发送报告。日志中的所有内容对我来说都很好?!

08-04 12:12:22.737  14841-14865/com.nap.jebise W/FlurryAgent﹕ Flurry session paused for context:com.nap.jebise.MainActivity@95bd500
08-04 12:12:25.447  15415-15433/com.nap.jebise I/FlurryAgent﹕ New main file also not found. returning..
08-04 12:12:25.457  15415-15433/com.nap.jebise W/FlurryAgent﹕ Flurry session started for context:com.nap.jebise.MainActivity@95bd500
08-04 12:12:25.457  15415-15433/com.nap.jebise W/FlurryAgent﹕ Flurry session resumed for context:com.nap.jebise.MainActivity@95bd500
08-04 12:12:25.547  15415-15433/com.nap.jebise D/FlurryAgent﹕ Referrer file contents: null
08-04 12:12:28.537  15415-15415/com.nap.jebise W/FlurryAgent﹕ Event count started: ONE PRESSED
08-04 12:12:28.677  15415-15446/com.nap.jebise W/FlurryAgent﹕ Analytics report sent.
08-04 12:12:29.757  15415-15415/com.nap.jebise W/FlurryAgent﹕ Event count started: TWO PRESSED
08-04 12:12:30.907  15415-15415/com.nap.jebise W/FlurryAgent﹕ Event count incremented: ONE PRESSED
08-04 12:12:32.707  15415-15415/com.nap.jebise W/FlurryAgent﹕ Event count incremented: ONE PRESSED
08-04 12:12:34.397  15415-15433/com.nap.jebise W/FlurryAgent﹕ Flurry session paused for context:com.nap.jebise.MainActivity@95bd500
08-04 12:12:37.997  15910-15928/com.nap.jebise I/FlurryAgent﹕ New main file also not found. returning..
08-04 12:12:37.997  15910-15928/com.nap.jebise W/FlurryAgent﹕ Flurry session started for context:com.nap.jebise.MainActivity@95bd500
08-04 12:12:37.997  15910-15928/com.nap.jebise W/FlurryAgent﹕ Flurry session resumed for context:com.nap.jebise.MainActivity@95bd500
08-04 12:12:38.087  15910-15928/com.nap.jebise D/FlurryAgent﹕ Referrer file contents: null
08-04 12:12:41.067  15910-15945/com.nap.jebise W/FlurryAgent﹕ Analytics report sent.

我有点担心什么New main file also not found. returning..Referrer file contents: null可能意味着什么,但无法通过谷歌找到任何关于这些的任何信息。

注意:我们一开始不使用 Google Play 服务,因为它说它只用于广告,我们不会使用。我也添加了这个,但仍然没有任何反应。

4

1 回答 1

3

修复了这个。

我们已经达到了 300 个独特事件的事件限制,所以我发送的所有新事件都没有通过。这就是为什么新版本 id 可以通过,但我们没有看到任何事件。使用旧事件名称的简单测试会在几个小时前发现。

哦,生活和学习...

于 2015-08-04T16:22:01.333 回答