Skip to main content

Initialize SDK

AndroidiOSWindows
If you're using Unreal Engine, see the InitSDK for Unreal Engine SDK.

Initialize SDK.

note

Before calling the Player Network SDK module, be sure to initialize the Player Network SDK first.

caution

On Windows platform, you need to call SetDefaultUserStorage first.

Function Definition

public static void InitSDK();

Code example

using INTL;// import INTL namespace

void InitializeINTLSDK()
{
INTLAPI.IsDebug = true; // Set SDK to Debug mode to print logs, default is false
INTLAPI.InitSDK();
}