Skip to main content

SDK Initialization

AndroidiOSWindows
If you were looking for the method for use with Unreal Engine, see InitSDK for Unreal Engine SDK.

Initializes the SDK.

note

Before calling Player Network SDK module functions, you must first initialize the Player Network SDK.

caution

On Windows devices, you must first call SetDefaultUserStorage.

Function definition

public static void InitSDK();

Code sample

using INTL;// import INTL namespace

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