Hello
I am trying to download images from a web service and store them locally in the device, In the ios version everything works correctly but in the android version I can't write to this folder:
Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData
but when I use this folder the images are beeing store:
Android.OS.Environment.ExternalStorageDirectory.AbsolutePath;
The problem is that the images are stored in the root folder and if i uninstall the application those images are not beeing deleted and i need those images to go away, Any ideas that what is going on here?