Home / Android / Installation tracking

Installation tracking

With the 2.0 SDK version, you can track the installations generated from the ads shown. This is very important to improve the matchings between apps and downloads performance, so don’t forget to add this tracking if you want to generate more downloads on your app! To track installs, you have to declare the BroadcastReceiver "com.tappx.sdk.android.TrackInstallReceiver" in your AndroidManifest.xml on the section application.

<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.