我可以使用beforeinstallprompt跟踪已安装Native Apps的用户数量吗?

时间:2017-09-30 23:38:51

标签: android google-chrome analytics manifest.json

我有一个应用安装横幅,显示在我们的移动网站上。我们可以使用manifest.json来做到这一点。我需要能够跟踪有多少用户关闭此横幅以及实际安装横幅的数量。根据我的阅读,我做了类似

的事情
window.addEventListener("beforeinstallprompt", function(e) {    
     e.userChoice.then(function(outcome) { 
      console.log(outcome);//Track this
     }, handleError); 
  });

我已经阅读了一些文章说过,我不能在生产或分析中使用此事件(herehere)。有什么理由想法吗?

由于 ķ

0 个答案:

没有答案