ANE-AndroidSupport icon indicating copy to clipboard operation
ANE-AndroidSupport copied to clipboard

Question regarding Install Referrer

Open raresn opened this issue 8 months ago • 2 comments

This work great on Android, we get if our users create an account after they downloaded the app by clicking on an add.

How can we get this on iOS?

Thanks.

raresn avatar Apr 02 '25 09:04 raresn

From what we can see, chatgpt offers this answer:

  1. Track installs using SKAdNetwork

Google automatically uses SKAdNetwork for iOS app install attribution.

You'll get aggregated install data (no user-level referrer info).

It's privacy-compliant, but limited:

    No referrer string

    No user identifiers

    Postback delay (~24–48h)

    Max 1 install + a few post-install conversion events

📌 You need to register your app with SKAdNetwork and configure conversion values if you want post-install tracking.

raresn avatar Apr 02 '25 09:04 raresn

Hi,

There is no equivalent of the android install referrer as far as I'm aware. Your closest option is using universal links with a service like branch, appsflyer or firebase to track installs from a link.

Using SKAdNetwork you can't really retrieve this information in the app, instead the referral information is sent to the ad provider (eg Google) and you'll need to coordinate with them (via dashboards etc) to see the information.

How SKAdNetwork Works (High-Level) 1. User clicks an ad from a participating ad network. 2. If they install your app from the App Store, Apple attributes the install. 3. After a delay, Apple sends a postback to the ad network with the install attribution data.

Let me know if you discover anything different but this is my understanding of the situation currently.

marchbold avatar Apr 04 '25 01:04 marchbold