We have started using Game analytics in our games and we are very satisfied by it’s simplicity,
many features and posibilities. But we are confused a little bit about the data that dashboard is showing:
it turns out that our game currently has about 1000 users but when we look at statistics data in Google developer console it shows us that we have about 300 users. Also GA shows us that in last 24 hours we had about 350 returning users which is too good to be true in this moment
Are we doing something wrong which causes wrong statistics? Here is part of code that is used in our game for GA.
if(dataStorage.getGAInitialized()==false)then --checks if Game analytics is initialized
GA = require “plugin.gameanalytics”
GA.isDebug = true
GA.runInSimulator = true
GA.submitSystemInfo = true
GA.submitUnhandledErrors = true
GA.init ( {
game_key = ‘xxxxxxxxxxxxx’,
secret_key = ‘xxxxxxxxxxxxx’,
build_name = “1.0”,
} );
dataStorage.setGAInitialized();
end