Hi,
When I update Addressable from 1.13.1 to 1.16.10 and rebuilding asset for testing I encountered this issues
Build Task GenerateLocationListsTask failed with exception:
Cannot recognize file type for entry located at 'Assets/AddressablesResources/Portals/GameData/Portal_IconGame_Lobby_1.tpsheet'. Asset import failed for using an unsupported file type.
version 1.13.1 worked fine but at that version on android build content update not working for me because of CRC miss match and catalog not updating resulting in old scene data, scriptable object ,ā¦
Anyone know what version is really stable at this point?
What kind of file type that addressable supported?
If anyone know how to resolving the CRC miss match and catalog updating issues please let me know.
When I test with simple project with scene and some game object the update system work fine but in the main project itās really not reliable
Edit: Can not update bundle on mobile
using this Iām able to resolve the update content problem. Since content in library folder often get ignored so I add a little script to change content of the settings.json file before build
I think this can be worked around if you check the āIgnore unsupported/invalid files in buildā box on the AddressableAssetSettings object. The file wonāt be the build, of course, but it should stop the build from failing. Let me know if that works.
How do we register file types (file extensions) that Addressables doesnāt natively support? So for example, .txt files seem fine - but .js and .map files donāt.
I tried creating a ScriptedImporter to register a .js or .map file - but that generates the following error:
The scripted importer āJavascriptFileImporterā attempted to register file type ā.jsā, which is handled by a native Unity importer. Registration rejected.
We can of course bundle those files into bundles or binaries - but we were looking for a way that would allow us to just the raw files into Addressables.
Same issue here, any news about it?
The custom mp4 file (containig more information, cannot be converted) needs to be an addressable too for updating the game. How can i achive it? It always throws unsupported file. I canāt write my own AssetImporter because mp4 has already a native one.
In addition - Iām also receiving āunsupported file typeā for .mat files. Both .mat and .prefab are unsupported? That doesnāt seem right at all⦠Major bug?
Which Addressables version are you seeing this in? This definitely sounds like a bug - any chance you could send a bug report with a project that reproduces it? Prefabs and mat files should both be supported.
If youād like to edit the AssetImporter youāre free to do so by pulling the addressables package folder from your library directly into your packages folder and then editing the file directly. The only down side to editing your package like this is that whenever Addressables updates youāll have to copy over your changes manually since the package manager doesnāt have any built in way to diff your custom package with the new version. Still, if you have custom mp4 files that you want to be included in your build, that is an option for you!
I am having this issue on an ubuntu github actions server. It works fine locally, but on ubuntu I get
āCannot recognize file type for entry located at āAssets/Art/Textures/UniqueProjectilesVol1_8x8_4K.PNGā. Asset import failed for using an unsupported file type.ā
This works fine on my local windows machine, but not on ubuntu. Any idea why this might be happening or how to fix it?
Someone suggested it may be due to windows not caring about case, while ubuntu does. If this is the issue, how would I fix it?