java.lang.Object | ||
↳ | android.content.BroadcastReceiver | |
↳ | com.google.android.gms.tagmanager.InstallReferrerReceiver |
The Google Play com.android.vending.INSTALL_REFERRER
Intent
is broadcast when an
app is installed from the Google Play Store. This BroadcastReceiver
listens for that
Intent
, passing the install referrer data to GTM for Mobile Apps and Google Analytics.
To enable this receiver, add the following to your AndroidManifest.xml file:
<!-- Used for install referrer tracking-->
<service android:name="com.google.android.gms.tagmanager.InstallReferrerService"/>
<receiver
android:name="com.google.android.gms.tagmanager.InstallReferrerReceiver"
android:exported="true">
<intent-filter>
<action android:name="com.android.vending.INSTALL_REFERRER" />
</intent-filter>
</receiver>
This receiver will automatically invoke the Google Analytics receiver to set the
Campaign data. If both the Google Analytics SDK and Google Tag Manager SDKs are in use,
only this receiver needs to be enabled.
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
[Expand]
Inherited Methods | |||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
![]() | |||||||||||||||||||||||||||||||||||||||||||||||
![]() |