我为Facebook Analytics创建了一个自定义事件 . 它显示在事件调试中,但未显示在“事件”选项卡中 . 我已经在发布候选版本上进行了测试,但它没有显示出来 .

@Override
public void sendEvent(String count, String action, String label) {
    String eventName="my_custom_event";

    Bundle b = new Bundle();
    b.putString(Constants.EVENT_PARAM_RESULT_COUNT, count);

    logger.logEvent(eventName, b);
}

如果事件被记录到事件调试,那么我认为注意代码是错误的 . 但为什么他们没有出现在Events选项卡中 .

事件调试屏幕截图:

Is it mendatory to upload app on PlayStore to see live Events?