expo-request-more-ram
v1.0.1
Published
config plugin for requesting increased memory limits
Downloads
31
Readme
expo-request-more-ram
Config plugin for requesting increased memory limits
Before you reach for this, try reducing the amount of memory your app requires first!
Apple in particular does not like it when you add unnecessary entitlements to your app. Use at own risk of App/Play Store rejection!
Installation
Install the package
$ npm install expo-request-more-ramAdd the config plugin to your app.json and choose which options you want to enable. By default, all options are enabled.
{
"expo": {
// etc etc
"plugins": [
[
"expo-request-more-ram",
{
"largeHeap": true, // android
"increasedMemoryLimit": true, // ios
"extendedVirtualAddressing": true // ios
}
]
]
}
}