> For the complete documentation index, see [llms.txt](https://danielsogl.gitbook.io/awesome-cordova-plugins/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://danielsogl.gitbook.io/awesome-cordova-plugins/plugins/plugins/chooser-simple-file.md).

# Chooser

File chooser plugin for Cordova.

The following must be added to config.xml to prevent crashing when selecting large files on Android:

```xml
<platform name="android">
 <edit-config
   file="app/src/main/AndroidManifest.xml"
   mode="merge"
   target="/manifest/application">
   <application android:largeHeap="true" />
 </edit-config>
</platform>
```

## Installation

```bash
ionic cordova plugin add cordova-plugin-simple-file-chooser
npm install @awesome-cordova-plugins/chooser-simple-file
```

**Plugin Repo:** <https://github.com/hc-oss/cordova-plugin-simple-file-chooser>

## Supported Platforms

* Android
* iOS

## Further Information

* [Installation Guide](/awesome-cordova-plugins/installation.md)
* [FAQ](/awesome-cordova-plugins/faq.md)
