Hi,
I have a piece of code in my Xamarin Forms apps that performs a test to know if a new Prepared Offline map is available. The code is a background task that run a loop and perform the query every X minutes...
Each time I am calling the OfflineMapTask.CreateAsync to get the OfflineMapTask object, it consumes about 10 Mo memory and this memory is not released even when forcing Garbage Collection with GC.Collect()...There is no Dispose method...
And after a while, the apps breaks with an Out Of Memory error.
Can you tell me hao I can free the memory consumed by the OfflineMapTask.CreateAsync method ?
Regards.
Eric.