I'm building an app which requires 1.8GB of resources. It's an enterprise app which will be installed in a controlled environment. The resources need to be on the device from the start as it will be used without network coverage.
The resources are specialist map tiles which are in the form of hundreds of PNG images, contained in semantically relevant folders.
When including these directly in the project, via folder references (as the images are retrieved using a derived path) Xcode slows to a crawl (due to indexing and maintaining a project of that complexity) and installation on a test device takes forever. This can be mitigated by removing the images after the first build (so they are still on the device) but that's not ideal. Additionally, when they're in the project, the bundle size is huge and this causes problems with deployment (not only download times, but it seems to fail quite often when downloading from our internal Apperian app store, presumably due to the sheer size).
I've experimented with distributing the app without the resources and having it download them, if required, on first run as a zip file. Unfortunately unzipping the resources takes an unsustainable amount of time.
How can I hit the sweet spot between an easy-to-manage project in Xcode, a small distribution package, and a manageable first-run experience? I'm happy for the iPad to be sat there for half an hour or so when the app is first installed, but any longer than that is not going to work. Is there a better way than using a zip file for the resources?