I'm running into OOM exceptions when running my XF android app on a test phone - Galaxy Note 3.
I've searched around on the web and in these forums and found a bunch of posts but to be honest I didn't really understand what I was reading. I've also read through memory best practices as well as loading large bitmaps efficiently but I'm not sure how they apply.
The specific scenario is that I have a resource that I'm using as the background for two consecutive navigation pages. When trying to push the second page it's crashing with OOM exception on loading the background resource. The resource image is actually smaller than the device resolution so I don't think I'd be able to trim it by downsampling.
How are people dealing with memory issues in XF?
On a side note - I'm also noticing that none of the memory from the images are cleared unless I manually set Image.Source = null when the page is popped/disappears. Seems like that's something that XF should be handling maybe?