[Android] Is possible download remote asset on app is background?

When play game, Waiting resource download is so boring.
So I want to user can download resource on app is background.
Is it possible?

Hi @YooSeungJi the default AssetBundleProvider does not support background app downloading. It requires using platform native methods whereas AssetBundleProvider uses UnityWebRequest to download AssetBundles.

You may be able to create your own custom bundle provider and build script to implement background downloading, but it would be tricky to do since you’ll need to handle AssetBundle caching and CRC yourself.