cordova-plugin-chooser
Advanced tools
Comparing version 1.2.2 to 1.2.3
{ | ||
"name": "cordova-plugin-chooser", | ||
"version": "1.2.2", | ||
"version": "1.2.3", | ||
"description": "Cordova file chooser plugin", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -44,1 +44,19 @@ # Chooser | ||
})(); | ||
## Platform-Specific Notes | ||
The following must be added to config.xml to prevent crashing when selecting large files | ||
on Android: | ||
``` | ||
<platform name="android"> | ||
<edit-config | ||
file="app/src/main/AndroidManifest.xml" | ||
mode="merge" | ||
target="/manifest/application" | ||
> | ||
<application android:largeHeap="true" /> | ||
</edit-config> | ||
</platform> | ||
``` |
Sorry, the diff of this file is not supported yet
13294
62