2016-04-06 11 views

cevap

2

Ben bir uygulama programcısı değilim, ancak according to the documentation veri her durumda yalnızca her 30 dakikada bir gönderilir (anında değil).

// 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); 
:

Ayrıca sevk süresi çeşitli şekillerde yapılandırılabilir görünüyor

İlgili konular