Jump to content

Android Manifest: Difference between revisions

(Created page with "== Overall Structure == * xml * manifest ** uses-sdk ** uses-feature ** uses-permission ** application ** queries === Application === * activity * receiver * provider * service * uses-library == Features == === Enable Large Heap === <code> <application android:largeHeap="true"> </code> Too many Java objects in your app may cause java.lang.OutOfMemoryError. You can force the Dalvik VM to increase the heap memory-size by enabling largeHeap="true". But in the end, it's sti...")
 
Line 20:
 
Too many Java objects in your app may cause java.lang.OutOfMemoryError. You can force the Dalvik VM to increase the heap memory-size by enabling largeHeap="true". But in the end, it's still limited to the device's actual available RAM though. Android official documentation doesn't really state how large the additional heap is, but they offered some hint regarding the maximum available size, which is 16 MB or more.
 
 
From [https://www.baeldung.com/java-stack-heap baeldung.com] (Java guides and course provider) :
Cookies help us deliver our services. By using our services, you agree to our use of cookies.