I want to get list of files by network at runtime. I am planning to host a lot of files (spritekit atlas) on my server. I want users to be able to download this files into the app. Since I don’t know at the moment how many files I am going to have, can I still use ODR and let users download newly added files without having to compile a new build of the app.
Using on demand resources, is it possible to download list of files if they are unknown at buildtime?
608 views Asked by святослав спорыхин At
1
There are 1 answers
Related Questions in IOS
- Overlapping UICollectionView in storyboard
- Cannot pod spec lint because of undeclared type errors
- Is the transactionReceipt data present in dataWithContentsOfURL?
- UIWebView Screen Fitting Issue
- ZXingObjC encoding issues
- iOS: None of the valid provisioning profiles allowed the specific entitlements
- How to hide "Now playing url" in control center
- CloudKit: Preventing Duplicate Records
- Slow performance on ipad erasing image
- Swift code with multiple NSDateFormatter - optimization
Related Questions in HOST
- Can't connect to MySQL server on 'mysql.hostinger.in' (111 "Connection refused")
- Swift - Run Code Stored Online
- Laravel 5.1 AWS S3 Flysytem: AWS HTTP error: cURL error 6: Couldn't resolve host name
- Wordpress comments with images - disabled by hosting
- How to Host and Run a Python Script on a Cloud for free and access it online?
- what it means to host a web player unity3d file on server like dropbox loading it into facebook canvas and use backend server like GameSparks
- Need help checking if to emails are part of the same domain?
- Error read/write USB host Android
- How to deploy your web site (client only) in one click?
- Access MySQL from 3 other docker containers
Related Questions in ON-DEMAND-RESOURCES
- Getting videos from Assets catalog using On Demand resources
- How to access Asset Catalog (images) after downloaded through NSBundleResourceRequest?
- Unable to find On-Demand Resources embedded in App bundle
- Using On Demand Resource with a javascript folder can not distributed to TF
- How to find the Ressource Path/Ressource itself in swift with on demand resources
- Versioning in Apple On Demand Resources
- Amazon EC2-what is the difference between on demand and on spot instances other than pricing that spot is more cheaper than on demand
- NSBundle PathsForResources returning null after downloading On Demand Resource Bundle
- On-demand resources (ODR) get completed/total file size of downloaded tag
- Using on demand resources, is it possible to download list of files if they are unknown at buildtime?
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Popular Tags
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
If your plan is to use Apple's ODR with Xcode, I am fairly certain you need to bundle those resources with the application and then tag them as ODR. At runtime, the application will download those files as necessary.
As far as I am aware, there is no other means by which you can modify the available ODR except by releasing a new version with the updated assets included in the bundle and tagged as downloadable. Apple is generally not a fan of resources being modified in an application after their approval process is complete so I would be surprised if you could upload whatever you like after the fact without modifying the bundle and resubmitting.