I am using the AdMob install receiver in my Android manifest file, for example
<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 want to use my own INSTALL_REFFERER receiver. The problem is that when I turn on my own receiver after AdMob, it is never called. If I turn on the mine in front of the AdMob receiver in the manifest file, mine will be called, but AdMob will not.
Anyway, can I force both calls?
thanks
source share