No, this should not be used.
Below is snippet of information from the android documentation defining what the tag is used for:
android:largeHeap
Most apps should not need this and should instead focus on reducing their overall memory usage for improved performance. Enabling this also does not guarantee a fixed increase in available memory, because some devices are constrained by their total available memory.
To query the available memory size at runtime, use the methods getMemoryClass()
orgetLargeMemoryClass
()
.
Reference: http://developer.android.com/guide/topics/manifest/application-element.html#largeHeap
Here is a blog post on dealing with memory in android: https://developer.android.com/training/articles/memory.html
FAQ Subject
Faq Category