Home / AppLovin / AppLovin Android SDK Mediation / Installation tracking

AppLovin Android SDK Mediation

Installation tracking

(cross-promotion only)

In this document we explain the most difficult variant of configuration to use for install tracking. Why do this? Because a lot of our developers already have other tracking services/networks (Analytics, Flurry, etc.), and if you don’t have any other tracking service, by creating this class/method you will prepare your app for the future.

You will have to edit your AndroidManifest.xml to call your class when a user installs your app from the market. (This class is always called when a user installs your app, but Tappx's tracking only counts installations that results from a click of our network banners).

<receiver
android:name="com.tappx.sdk.android.TrackInstallReceiver"
android:exported="true">

</receiver>

Important: The declared broadcast must have the android:exported="true" property in order to work properly.