In iOS an app will receive a memory warning by implementing a function called DidReceiveMemoryWarning
, which means the RAM is not enough to use. If a Level 2 version of this warning is sent, the app will probably be force stopped.
Is there something similar (like a broadcast intent) in Android to tell my app that we're out of RAM and i could remove some objects programmatically?
Thanks.