安卓平台,按照步骤配置了统计功能,并在页面里调用一下方法:

protected void onPause() {
super.onPause();
AVAnalytics.onPause(this);
}

protected void onResume() {
    super.onResume();
    AVAnalytics.onResume(this);
}

控制台在第二天依然没有数据,怎么排查问题出在哪里?