Hi,
I am trying to release unused localized assets from memory in my appplication. Once loaded the asset would remain in memory (according to the Addressables Event Viewer), even when not in use.
I tried releasing the CurrentLoadingOperation of my LocalizedAsset instance, but it did not release the asset (Addr Event Viewer). Doing this did not seem to make any difference.
I also tried to keep a reference to the handle returned by LoadAssetAsync (on LocalizedAsset) and releasing this handle later on. This released the asset in the Event Viewer, but this also resulted in an Exception (“invalid operation handle”) when I tried to load the same asset again.
Is there an official way to release unused localized assets from memory?