CancelAppDownload
()
|
Cancel an app download that is in progress. It will return a result when the download is cancelled.
Signature
static Request<Models.AppDownloadResult> Oculus.Platform.Application.CancelAppDownload() Returns Request< Models.AppDownloadResult > |
CheckAppDownloadProgress
()
|
Track download progress for an app.
Signature
static Request<Models.AppDownloadProgressResult> Oculus.Platform.Application.CheckAppDownloadProgress() Returns Request< Models.AppDownloadProgressResult > |
GetVersion
()
|
Requests version information, including the ApplicationVersion::CurrentCode and ApplicationVersion::CurrentName of the currently installed app and ApplicationVersion::LatestCode, ApplicationVersion::LatestName, ApplicationVersion::Size and ApplicationVersion::ReleaseDate of the latest app update.
Signature
static Request<Models.ApplicationVersion> Oculus.Platform.Application.GetVersion() Returns Request< Models.ApplicationVersion > |
InstallAppUpdateAndRelaunch
(
deeplink_options
)
|
Installs the app update that was previously downloaded. Once the install begins the application will exit automatically. After the installation process is complete, the app will be relaunched based on the options passed in.
Signature
static Request<Models.AppDownloadResult> Oculus.Platform.Application.InstallAppUpdateAndRelaunch(ApplicationOptions deeplink_options=null) Parameters deeplink_options: ApplicationOptions
Additional configuration for this relaunch, which is optional. It contains 5 fields ApplicationOptions.SetDeeplinkMessage(), ApplicationOptions.SetDestinationApiName(), ApplicationOptions.SetLobbySessionId(), ApplicationOptions.SetMatchSessionId() and ApplicationOptions.SetRoomId().
Returns Request< Models.AppDownloadResult > |
LaunchOtherApp
(
appID
, deeplink_options
)
|
Launches a different application in the user's library. If the user does not have that application installed, they will be taken to that app's page in the Oculus Store
Signature
static Request<string> Oculus.Platform.Application.LaunchOtherApp(UInt64 appID, ApplicationOptions deeplink_options=null) Parameters appID: UInt64
The unique ID of the app to be launched.
deeplink_options: ApplicationOptions
Additional configuration for this request, which is optional. It contains 5 fields ApplicationOptions.SetDeeplinkMessage(), ApplicationOptions.SetDestinationApiName(), ApplicationOptions.SetLobbySessionId(), ApplicationOptions.SetMatchSessionId() and ApplicationOptions.SetRoomId().
Returns Request< string > |
StartAppDownload
()
|
Starts an app download. It will return a result when the download is finished. Download progress can be monitored using the Application.CheckAppDownloadProgress().
Signature
static Request<Models.AppDownloadResult> Oculus.Platform.Application.StartAppDownload() Returns Request< Models.AppDownloadResult > |