Hazem Hagrass
Hazem Hagrass

Reputation: 9838

Phonegap FileTransfer crashes when downloading large files

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

Answers (1)

Vicky Gonsalves
Vicky Gonsalves

Reputation: 11717

add android:largeHeap="true" to your application's manifest file, clean the project and try

<application 
    android:largeHeap="true"
    ...
    ...

Upvotes: 4

Related Questions