我不想立即将数据发送到谷歌分析。我想在android中定期每10分钟发送一次数据。如何实现它。
答案 0 :(得分:2)
我不是应用程序员,但according to the documentation数据在任何情况下每30分钟发送一次(不是即时)。
此外,调度期间似乎可以通过各种方式进行配置:
// Set the dispatch period in seconds.
GoogleAnalytics.getInstance(this).setLocalDispatchPeriod(30);
//To set the dispatch period in the XML configuration file:
<integer name="ga_dispatchPeriod">30</integer>
Setting a zero or negative value will disable periodic dispatch, requiring that you use manual dispatch if you want to send any data to Google Analytics.
// Disable periodic dispatch by setting dispatch period to a value less than 1.
GoogleAnalytics.getInstance(this).setLocalDispatchPeriod(0);