Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


RequestToUseMobileDataAsync

Requests to use mobile data to download Android asset packs.
Read time 2 minutesLast updated 12 days ago

Definition

RequestToUseMobileDataAsync(Action<AndroidAssetPackUseMobileDataRequestResult>)

Requests to use mobile data to download Android asset packs.
public static void RequestToUseMobileDataAsync(Action<AndroidAssetPackUseMobileDataRequestResult> callback)

Parameters

The callback method to get the result. The callback method must have an AndroidAssetPackUseMobileDataRequestResult parameter. This contains the value that indicates the end user's choice. The application raises this callback a single time after the end user submits their decision.

Remarks

If the device is not connected to WiFi, it pauses large Android asset pack downloads until a WiFi connection is available. If this is the case, the asset pack has the AndroidAssetPackStatus.WaitingForWifi status. In this situation, you can call RequestToUseMobileDataAsync to give the end user the option to download your application's asset packs using mobile data. This method directly wraps Google's PlayCore plugin API. If the PlayCore plugin is missing, calling this method throws an InvalidOperationException exception. Additional Resources: AndroidAssetPackUseMobileDataRequestResult, AndroidAssetPacks.CancelAssetPackDownload, AndroidAssetPacks.DownloadAssetPackAsync, AndroidAssetPacks.GetAssetPackStateAsync.

RequestToUseMobileDataAsync()

Requests to use mobile data to download Android asset packs.
public static RequestToUseMobileDataAsyncOperation RequestToUseMobileDataAsync()

Returns

Type

Description

RequestToUseMobileDataAsyncOperationReturns an object that represents the request operation. If you yield this object inside a coroutine, the coroutine pauses until the operation is complete.

Remarks

If the device is not connected to WiFi, it pauses large Android asset pack downloads until a WiFi connection is available. If this is the case, the asset pack has the AndroidAssetPackStatus.WaitingForWifi status. In this situation, you can call RequestToUseMobileDataAsync to give the end user the option to download your application's asset packs using mobile data. This method directly wraps Google's PlayCore plugin API. If the PlayCore plugin is missing, calling this method throws an InvalidOperationException exception. Additional Resources: RequestToUseMobileDataAsyncOperation, AndroidAssetPacks.CancelAssetPackDownload, AndroidAssetPacks.DownloadAssetPackAsync, AndroidAssetPacks.GetAssetPackStateAsync.