PICO Unity Platform SDK
|
Static Public Member Functions | |
static Task< string > | LaunchApp (string packageName, ApplicationOptions options=null) |
Launches another app by app package name. More... | |
static Task< string > | LaunchAppByAppId (string appId, ApplicationOptions options=null) |
Launches another app by app ID. More... | |
static LaunchDetails | GetLaunchDetails () |
Gets the details about an app launch event. More... | |
static void | LogDeeplinkResult (string trackId, LaunchResult result) |
Logs whether a user has been successfully directed to the desired destination via a deep link. More... | |
|
static |
Launches another app by app package name.
packageName | The package name of the to-be-launched app. |
options | The options for launching the app. Pass null or leave this parameter empty. |
|
static |
Launches another app by app ID.
appId | The ID of the to-be-launched app. |
options | The options for launching the app. Pass null or leave this parameter empty. |
|
static |
Gets the details about an app launch event.
LaunchResult
and LaunchType
:LaunchResult
:0
: Unknown1
: Success2
: FailedRoomFull3
: FailedGameAlreadyStarted4
: FailedRoomNotFound5
: FailedUserDeclined6
: FailedOtherReasonLaunchType
:0
: Unknown1
: Normal2
: Invite3
: Coordinated4
: Deeplink
|
static |
Logs whether a user has been successfully directed to the desired destination via a deep link.
trackId | The tracking ID of the app launch event. |
result | The app launch result:
|