Hello,
I’m currently working on App Thinning to reduce the overall download file size of the App, so when the user launches the app, it’ll externally download the larger files (that are of AssetBundles) - a rather common system to use for larger mobile Apps.
After digging around, it seems as basic as creating the AssetBundle, and then sticking it on a server somewhere, in which the App can connect, index and download and save locally, right?
I have found that Apple have a ODR built into their App Store - that essentially does just this.
My first question is - what’s the benefits of using App’s ODR, rather than using my own server for download? And where does that leave Android users?
Surely, if you’re targeting multiple platforms, it just makes sense to stick all AssetBundles together on a server (in their corresponding platforms), and use a WWW download to retrieve and save the assets?
Will Apple not like the fact that I’ll be using an external ODR system?!? (Apple can be funny like that).
Thanks