I have a lot of content in unity addressable. I want to add more new content. The problem I'm facing is that when I use to update content for addressable and upload it to remote. the app doesn't fetch from the remote. I have to make an android/IOS build each time for new content to be added. Is there a workaround where I don't have to upload IOS/Android build each time new content is added?
How to add new remote content to unity addressable without rebuilding and uploading app (android and IOS)
1.1k Views Asked by saad-tayyab At
2
There are 2 best solutions below
Related Questions in C#
- Passing arguments to main in C using Eclipse
- kernel module does not print packet info
- error C2016 (C requires that a struct or union has at least one member) and structs typedefs
- Drawing with ncurses, sockets and fork
- How to catch delay-import dll errors (missing dll or symbol) in MinGW(-w64)?
- Configured TTL for A record(s) backing CNAME records
- Allocating memory for pointers inside structures in functions
- Finding articulation point of undirected graph by DFS
- C first fgets() is being skipped while the second runs
- C std library don't appear to be linked in object file
- gcc static library compilation
- How to do a case-insensitive string comparison?
- C programming: Create and write 2D array of files as function
- How to read a file then store to array and then print?
- Function timeouts in C and thread
Related Questions in UNITY-GAME-ENGINE
- Using arrow keys to rotate an object
- know object behind another object is fully visible
- Unity3d AudioSource not creatable
- Unity3d - Input.GetKey returns true more than once
- Flurry Ads on Unity3D with Prime31 plugin
- Make screenshot of DirectX window that is hidden and doesn't have focus
- Coroutine being detected as inactive despite being active
- Unity3D: Adding charged force in relation to position
- Unity - Particles emitting non-random
- 3d mouse aim camera 3rd person vertical C#
- Unity: How would I go about creating a power up system?
- Unity - Gui Button issues (Android)
- Unity3d strange Collider behaviour
- Start() function doesn't work properly after Application.LoadLevel
- Gravity works weird
Related Questions in GAME-DEVELOPMENT
- Slow down player when colliding with "dirt" on ground
- Using Neural Networks Without Training Them
- How can I write a simple real-time game loop in pure Haskell?
- JS TileMap iOS 8 and swift, incomprehensible archive?
- Line to Circle transformation
- AWT Canvas BufferStrategy and resize flickering
- Player Movement Troubles
- Cant understand how to get this collision detection to work what am i doing wrong?
- How do I simulate a button click for BattleCry?
- c# XNA 4.0 Camera zoom and sprite resizing
- Github release a specific folder
- Getting a point in the local frame of a simulated robot
- Tips for an AI for a 2D racing game
- Adding a Mysql query to a Javascript function?
- Post Streamlined: Need PLC Project Advice: Arcade Button Pre-Encoder, Remapping+Turbo+Slow Functions
Related Questions in ADDRESSABLES
- Unity addressables load specific prefab from cloud
- Can Unity Addressables include both assets and scenes, unlike Asset Bundles?
- URI Equivalent of encode_www_form_component in Addressable
- How to create a new version of bundles through Addressables?
- Unity: AndroidJavaException: java.lang.ClassNotFoundException: com.google.android.play.core.assetpacks.AssetPackManagerFactory
- Unity PAD system only adds to .abb size
- Delivering downloadable content to Android application in Unity (loading with Addressables)
- The type or namespace name 'AsyncOperationHandle<>' could not be found
- Unity Build and Run aab file - nothing happens
- Unity Addressables: RemoteProviderException : TextDataProvider : unable to load from url /base.apk!/assets/aa/settings.json
- Can you add addressables from your script in Unity?
- Addressable related confusion at runtime (for Unity games)?
- How to duplicate, reuse, and dispose of dynamically generated addressable objects
- How to add new remote content to unity addressable without rebuilding and uploading app (android and IOS)
- Getting "Assertion failed on expression" error when unloading scene in Unity?
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)
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?
The best way would be to implement some sort of server call that returns the version of the actual content.
Then you can check the version of the content in the app, and if it does not match - download the newer one.