期待类似于 Google PlayStore 控制台的东西,您可以在其中输入日期和指标,然后下载 csv 文件。
华为AppGallery Connect中有类似的东西吗?
到目前为止,我所能做的就是调整日期和一些指标。
期待类似于 Google PlayStore 控制台的东西,您可以在其中输入日期和指标,然后下载 csv 文件。
华为AppGallery Connect中有类似的东西吗?
到目前为止,我所能做的就是调整日期和一些指标。
仅启用 Analytics 服务是不够的。您需要将 Analytics Kit 添加到您的 Android/iOS App 中,然后才能从 AppGallery Connect 中获取 Analytics 数据。
HA 集成的过程很简单。您可以参考以下步骤或文档。整合后,您可以在Analytics页面右下角下载数据。
Analytics Kit 提供服务器 API 让您将在设备上收集的事件数据导出,并将数据导入您的 BI 系统以进行统一的数据分析。有关详细信息,请参阅文档。
dependencies {
implementation 'com.huawei.hms:hianalytics:5.0.5.300'
}
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
// Enable SDK log recording.
HiAnalyticsTools.enableLog();
HiAnalyticsInstance instance = HiAnalytics.getInstance(this);
// Or use the context for initialization.
Context context = this.getApplicationContext();
HiAnalyticsInstance instance = HiAnalytics.getInstance(context);
instance.setUserProfile("userKey","value");
}
// Add triggers of custom events in proper positions of the code.
Bundle bundle = new Bundle();
bundle.putString("exam_difficulty","high");
bundle.putString("exam_level","1-1");
bundle.putString("exam_time","20190520-08");
instance.onEvent("begin_examination", bundle);
// Add triggers of predefined events in proper positions of the code.
Bundle bundle_pre = new Bundle();
bundle_pre.putString(PRODUCTID, "item_ID");
bundle_pre.putString(PRODUCTNAME, "name");
bundle_pre.putString(CATEGORY, "category");
bundle_pre.putLong(QUANTITY, 100L);
bundle_pre.putDouble(PRICE, 10.01);
bundle_pre.putDouble(REVENUE, 10);
bundle_pre.putString(CURRNAME, "currency");
bundle_pre.putString(PLACEID, "location_ID");
instance.onEvent(ADDPRODUCT2WISHLIST, bundle_pre);
开发过程中可以开启调试模式,实时查看事件记录,观察结果,调整事件上报策略。