views:

46

answers:

1

I have this in my manifest file:

<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>

but I don't see the install data in my GA. I am wondering if I missed out something.

A: 

This is code snippet correct. But it need for track information about installations by using referral link. You can generate this link here. So if user found your application by this link and then he installed your application, in this case will be recorded referral parameters. (Please see more about referral parameters by link above).

If you want simply track installations of your application, you will can track some pageview (e.g /app/install) only once, at first run of your application.

alexey