Reputation: 9838
I'm using PhoneGap's FileTransfer object to download large files for offline use. Smaller files of 5Mb or so download just fine, however larger files are crashing the app with "Out of Memory" errors. Has anyone had any luck with downloading large files? Is there a plugin available that can fix this?
Upvotes: 0
Views: 1219
Reputation: 11717
add android:largeHeap="true"
to your application's manifest file, clean the project and try
<application
android:largeHeap="true"
...
...
Upvotes: 4