I have this ID for my GA account: "UA 25832113-1"
ok, but... how I have to put it on my app? Which format?
A -开发者_高级运维> "UA 25832113-1"
B -> "UA-25832113-1"
C -> "25832113-1"
B is correct. (ie. 'UA-10876-1')
Official docs: http://code.google.com/apis/analytics/docs/concepts/gaConceptsAccounts.html#webProperty
B
if you are using the "Google Analytics SDK for Android" you shuld use something like this:
tracker = GoogleAnalyticsTracker.getInstance();
tracker.startNewSession("UA-25832113-1", this);
精彩评论