2016-04-06 13 views

答えて

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); 
関連する問題