Google Analytics, Install Tracking android
Posted
by
vvieux
on Stack Overflow
See other posts from Stack Overflow
or by vvieux
Published on 2011-01-05T12:37:16Z
Indexed on
2011/01/07
0:54 UTC
Read the original article
Hit count: 213
Hi,
I want track install referer for my application using google analytics.
I don't want use the Tracking Pageviews and Events feature, only install.
So I added the sdk jar in my app, add these lines to the manifest :
<receiver android:name="com.google.android.apps.analytics.AnalyticsReceiver"
android:exported="true">
<intent-filter>
<action android:name="com.android.vending.INSTALL_REFERRER" />
</intent-filter>
</receiver>
And publish the app.
But how can see the stats ? I never entered my UA-xxxxxxx id.
For the Pageviews and Events tracking it's here :
tracker.start("UA-YOUR-ACCOUNT-HERE", this);
But as thew readme says : (NOTE: do not start the GoogleAnalyticsTracker in your Application onCreate() method if using referral tracking).
But with referer where do I put my id ?
And what is the url to watch in the google analytics console ?
Thx
© Stack Overflow or respective owner