Appsflyer Integration

๐Ÿ“˜

Integrate Hackle with external services for a more convenient experience.

Appsflyer's official integration is available for Enterprise plans.

What is Appsflyer?

Appsflyer is a global platform for mobile marketing analysis and attribution solutions, helping track advertising campaign performance and optimize user acquisition for mobile apps. It aggregates user behavioral data to evaluate marketing strategy effectiveness and transparently assess performance across various marketing channels.

Integrating Hackle with Appsflyer allows importing mobile app traffic information as user attributes, which can be utilized for A/B testing targeting and detailed analysis.

How to Integrate Appsflyer

Hackle Dashboard Settings

  1. Before integration, ensure both Hackle SDK and Appsflyer SDK are installed in the service.
  2. Visit the Hackle dashboard Workspace Settings > External Integration page. (Link)
  1. Select Appsflyer
    You can verify the integration status and obtain the required API Key for integration.
    The integration status changes to "Completed" once the API Key is registered in Appsflyer and events are successfully received by Hackle from Appsflyer. The next steps can be performed from the Appsflyer dashboard.

Appsflyer Dashboard Settings - Hackle Partner Addition

Menu -> Configureation -> Partner Marketplace

Menu -> Configuration -> Partner Marketplace

Partner Marketplace

Partner Marketplace

Find hackle in Partner Marketplace

Find hackle in Partner Marketplace

Integration Management

Integration Management

Partner Integration Configure

  • Hackle API Key setting
    Please input the API Key issued from the Hackle dashboard above.
Menu -> Configuration -> Active Integrations (Integration Tab)

Menu -> Configuration -> Active Integrations (Integration Tab)

  • Hackle Partner Permission Configure
ํŒŒํŠธ๋„ˆ ๋งˆ์ผ“ํ”Œ๋ ˆ์ด์Šค ์ด๋™

Menu -> Configuration -> Active Integrations (Permission Tab)

  • Default Postback Configure

choice for users from All Media sources, including organic

change for users from

change for users from

You've completed the dashboard setup to send data from Appsflyer to Hackle. Finally, through SDK integration, ensure the transmitted data is linked with other Hackle data for data analysis.

SDK Integration

To successfully utilize data sent from Appsflyer in Hackle, Hackle Device ID must be set in Appsflyer SDK. You should initializie the Hackle SDK first and then call the function below to correctly retrieve the Hackle Device ID.

HackleCustomId is sent with every postback and is used to identify the user.

The postback is sent to Hackle as an event named "$af_install," and this event is billed the same way as regular events.

HashMap<String, Object> customData = new HashMap<String,Object>();

String deviceId = HackleApp.getInstance().getDeviceId();
customData.put("hackleCustomId", deviceId);

AppsFlyerLib.setAdditionalData(customData);
let deviceId = Hackle.app()!.deviceId
let customData = ["hackleCustomId": deviceId]

AppsFlyerLib.shared().customData = customData