Did you find this guide helpful?
Some test text!
Xamarin / FAQ / Why do I need to enable largeHeap for my app?
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="true"
...>
...
</application>
</manifest>
Get the answers you need: Chat with us