Hi there,
I’m going through my app now it’s finished just doing some tidying up and have noticed there seems to be a memory leak occurring somewhere around my network request code… this is how I’m making my network request. Happy to post the full code if that would help.
requestId = network.request( url, “POST”, downloadListener, params);
The request downloads some audio content into the app and saves it to the documents directory. This can sometimes be quite a bit of audio, so a lot of data is potentially being transferred.
Does anyone know what I need to do to free up any memory that is being assigned to this process. Once the download has completed, is the memory associated with this meant to be freed up automatically or are there a set of steps I need to go through to manually free up the memory?
Any tips / advice would be much appreciated.
Many thanks,
Ian