Dickens A S
Dickens A S

Reputation: 4054

Google analytics without using any library

In a special scenario, I would like to do the google analytics in android code, without using the google analytics library.

Is this possible? If yes, how to program it from scratch.

Otherwise is there a simpler pure HTTP based analytics system as open source? which can be coded using a normal URLConnection

Otherwise is it possible to do google analytics using URLConnection, if yes, how?

Upvotes: 0

Views: 115

Answers (1)

pdegand59
pdegand59

Reputation: 13019

You can use Google Analytics directly over HTTP (and thus, URLConnection).

You can find the documentation here : https://developers.google.com/analytics/devguides/collection/protocol/v1/

Upvotes: 1

Related Questions