I am using the AdMob install receiver in my Android Manifest file, e.g.
<!-- AdMob Install Receiver -->
<receiver android:name="com.admob.android.ads.analytics.InstallReceiver" android:exported="true">
<intent-filter>
<action android:name="com.android.vending.INSTALL_REFERRER" />
</intent-filter>
</receiver>
However, I also wish to use my own INSTALL_REFFERER receiver. The problem is, when I include my own receiver after the AdMob one, it never gets called. If I include mine before the AdMob receiver in the manifest file, mine gets called but the AdMob one doesn't.
Is there anyway I can get both to be called?
Thanks
Android app cannot have multiple receivers which have the same intent-filtered action.
Make the proxy receiver like this:
in AndroidManifest.xml:
in TrackingReceiver.java: