Hi,
I have written a simple Xamarin Forms App with two pages.
The first page is the main page, the second one is a page with a MapView control that displays an Offline Map package. All is working good.
I can navigate between the two page in replacing the MainPage value of the Xamarin application.
The problem is the following one:
On WIndows platform, when I goes the first time on the map page and come back to the main page, the map page being no more used is supposed to be released and ressources free...BUT, if I try to move or delete locally the package (simulating for exemple an update coming from the server)...I cannot because the files are locked, whereas they are no more used (I am on the main page).
On Android, there is no problem...I can do whatever I want with the files of the package when I am on the main page.
How can I free ressource used and kept internally by he runtime so that I can update the package from the main page !
Regards.