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"))