Unreal Steam

Link to repository
GitHub

AppsFlyer Unreal Steam SDK integration

AppsFlyer empowers gaming marketers to make better decisions by providing powerful tools to perform cross-platform attribution.

Game attribution requires the game to integrate the AppsFlyer SDK that records first opens, consecutive sessions, and in-app events. For example, purchase events.
We recommend you use this sample app as a reference for integrating the AppsFlyer SDK into your Unreal Steam game. Note: The sample code that follows is currently only supported in a Windows environment.


Prerequisites:

  • Unreal Engine 4.2x
  • Steamworks SDK integrated within your UE4 (usually it’s included within the UE4 third-parties and there’s no need to download it).
  • Steam client installed with an active user.

AppsflyerSteamModule - Interface

AppsflyerSteamModule.h, included in the appsflyer-unreal-steam-sample-app/AppsflyerSteamIntegrationFiles/AppsflyerSteamModule folder, contains the required code and logic to connect to AppsFlyer servers and report events.

Init

This method receives your API key and app ID and initializes the AppsFlyer Module.

Method signature

void init(const char* devkey, const char* appID)

Usage:

AppsflyerSteamModule()->init("DEV_KEY", "STEAM_APP_ID");

Arguments:

Start

This method sends first open and /session requests to AppsFlyer.

Method signature

void start(bool skipFirst = false)

Usage:

// without the flag
AppsflyerSteamModule()->start();

// with the flag
bool skipFirst = [SOME_CONDITION];
AppsflyerSteamModule()->start(skipFirst);

LogEvent

This method receives an event name and JSON object and sends in-app events to AppsFlyer.

Method signature

void logEvent(std::string event_name, json event_values)

Usage:

//set event name
std::string event_name = "af_purchase";
//set json string
std::string event_values = "{\"af_currency\":\"USD\",\"af_price\":6.66,\"af_revenue\":24.12}";
AppsflyerSteamModule()->logEvent(event_name, event_values);

IsInstallOlderThanDate

This method receives a date string and returns true if the game folder modification date is older than the date string. The date string format is: "2023-January-01 23:12:34"

Method signature

bool isInstallOlderThanDate(std::string datestring)

Usage:

// the modification date in this example is "2023-January-23 08:30:00"

// will return false
bool dateBefore = AppsflyerSteamModule()->isInstallOlderThanDate("2023-January-01 23:12:34");

// will return true
bool dateAfter = AppsflyerSteamModule()->isInstallOlderThanDate("2023-April-10 23:12:34");

Running the sample app

  1. Open the UE4 engine.
  2. Choose New Project > Games > First Person.
  3. Choose C++ (instead of Blueprints).
  4. Name the project AppsFlyerSample and click Create project.
  5. Follow the instructions to implement AppsFlyer in your Steam game.
  6. Launch the sample app from the UE4 engine editor.
  7. After 24 hours, the dashboard updates and shows organic and non-organic installs and in-app events.

Implementing AppsFlyer in your Steam game

Setup

  1. Make sure that Steam is in your UE4 third parties. Learn more
  2. Add the following definitions to Config/DefaultEngine.ini. For reference, see the appsflyer-unreal-steam-sample-app/AppsflyerSteamIntegrationFiles/DefaultEngine.ini file.
+NetDriverDefinitions=(DefName="GameNetDriver",DriverClassName="OnlineSubsystemSteam.SteamNetDriver",DriverClassNameFallback="OnlineSubsystemUtils.IpNetDriver")
DefaultPlatformService=Steam
bEnabled=true
SteamDevAppId=480 //replace "480" with your steam app id.
NetConnectionClassName="OnlineSubsystemSteam.SteamNetConnection"
  1. In your Unreal editor, go to Plugins, activate Online Subsystem Steam, and restart the editor.
  2. Open the project in your preferred C++ editor and in [YOUR-APP-NAME].Build.cs file, add OpenSSL, OnlineSubsystem, and OnlineSubsystemSteam to your dependencies and HTTP as a private dependency:
PublicDependencyModuleNames.AddRange(new string[] { "Core", "CoreUObject", "Engine", "InputCore", "HeadMountedDisplay", "OpenSSL", "OnlineSubsystem", "OnlineSubsystemSteam" });
PrivateDependencyModuleNames.Add("HTTP");
  1. In your Unreal Project files, under the Source directory, create a new directory named AppsflyerSteamModule.
  2. Copy the following files from appsflyer-unreal-steam-sample-app/AppsflyerSteamIntegrationFiles/AppsflyerSteamModule to the new folder:
  • AppsflyerModule.cpp
  • AppsflyerSteamModule.cpp
  • AppsflyerSteamModule.h
  • DeviceID.h
  • RequestData.h
  1. Generate project files to add OpenSSL. Learn more.
  2. In the GameMode.h file, add the StartPlay() function:
class AAppsFlyerSampleGameMode : public AGameModeBase
{
    GENERATED_BODY()

public:
    AAppsFlyerSampleGameMode();
    virtual void StartPlay() override;
};

  1. Open the Source/AppsFlyerSample/AppsFlyerSampleGameMode.cpp file and add the following include to your GameMode.cpp file:
#include "AppsflyerSteamModule/AppsflyerSteamModule.cpp"
  1. Add the following function, making sure to replace DEV_KEY and STEAM_APP_ID in the init function with your app details:
void AAppsFlyerSampleGameMode::StartPlay()
{
    Super::StartPlay();
    if (SteamAPI_Init()) {
        // init the AF module
        AppsflyerSteamModule()->init("DEV_KEY", "STEAM_APP_ID")

        // check whether the install date was not older than 2023-January-02 23:12:34
        bool isInstallOlderThanDate = AppsflyerSteamModule()->isInstallOlderThanDate("2023-January-02 23:12:34");

        // send the firstOpen/session event (if the install date is not older than the given date, the AF module will skip the first-open event)
        AppsflyerSteamModule()->start(!isInstallOlderThanDate);

        // Use the following code to send in-app event
        // set event name
        std::string event_name = "af_purchase";
         // set json string
        std::string event_values = "{\"af_currency\":\"USD\",\"af_price\":6.66,\"af_revenue\":24.12}";
        AppsflyerSteamModule()->logEvent(event_name, event_values);
    }
}
  1. Initialize and start the AppsFlyer integration.
  2. Report in-app events.

Deleting Steam cloud saves (resetting the attribution)

  1. Disable steam cloud.
  2. Delete the local files.