Some test text!

Search
Hamburger Icon

Xamarin / FAQ / Why do I need to enable largeHeap for my app?

Why do I need to enable largeHeap for my app?

This tutorial only applies to Xamarin.Android.

Setting the optional android:largeHeap="true" flag in the AndroidManifest.xml file allows your application's processes to be created with a large Dalvik heap. PDF document rendering can be memory intensive and this flag is recommended to ensure that your application has enough heap memory allocated.

Example:

<?xml version="1.0" encoding="utf-8"?>
<manifest ...>

    <!-- Required permissions are added here -->
    <uses-permission android:name="android.permission.INTERNET"/>
    <uses-permission android:name="android.permission.RECORD_AUDIO" />

    <!-- Add multidex support and enable largeHeap. 
         Also enable usesCleartextTraffic in application attributes if you are 
         working with HTTP files. If you are only working with HTTPS files, this is not required.-->
    <application 
        android:name="androidx.multidex.MultiDexApplication"
+       android:largeHeap="true"
        android:usesCleartextTraffic="false"
        ...>    
        ...
    </application>
</manifest>

Get the answers you need: Chat with us