Android executes analytics request to server

What would be the best way to track the download of an integrated sdk application. Sdk will store the methods for sending the / s request.

It will check if the file exists. If the file does not exist (has not been downloaded previously), will it send a request to the server or use an analytical api to store data on the server and create a file (indicate that the application was downloaded) or any other approach? The data that will be sent and saved will be as follows: download by date and os version.

Is it possible to use Google Analytics for this or use any other api or write my own?

I have a basic knowledge of php and mysql databases.

+4
source share
2 answers

I suggest you take a look at Flurry analytics. They provide a pretty sweet and intuitive SDK. Here is a link to their website: http://www.flurry.com/

I personally use and as their provided API.

PS: Instead of writing code that will do the work of analytics, rather use what is already installed and working.

Hope this helps.

+2
source

You can use the Google Analytics API to track events in pageviews and even send custom variables. Take a look here .

+1
source

All Articles