Google Analytics is storing the information I pass in the URL with utm_source, utm_campaign, and utm_medium. Now I am wondering how I grab that information when the user opens the application? I see this in my logs:'
03-18 20:19:48.633: I/GAV2(32317): Thread[GAThread,5,main]: Campaign found: utm_source=source value tracking tara&utm_medium=medium value tracking tara&utm_campaign=campaign value tracking tara androidlitetrackingtara
I have this in my applications manifest:
<service android:name="com.google.analytics.tracking.android.CampaignTrackingService" />
<receiver
android:name="com.google.analytics.tracking.android.CampaignTrackingReceiver"
android:exported="true" >
<intent-filter>
<action android:name="com.android.vending.INSTALL_REFERRER" />
</intent-filter>
</receiver>
I try to grab it from the intent, but the data is not there. Any ideas?