[Bug][1.1.4] GetDownloadSizeAsync is always return the same value for Android

The method for determining whether the URL is remote is incorrect.
(On Android, the path of the local file is jar: file: /// ~ but it is not considered).

Workaround
AssetBundleProvider.cs line 91

if (!loc.InternalId.Contains("://"))

if (!loc.InternalId.StartsWith("http"))

Thanks, that fix does seem reasonable.

1 Like