Peter
Peter

Reputation: 11

How to cope with big files on Android

I have been developing application that needs 45 MB raw data file.

I have tried to add (45MB) file to resources (R.raw) - the project doesn't load into device due to memory limitations.

I read that Android market limits maximum application size to 50 MB, so there is a way to cope with big files.

I'm wondering, where should I store big files and how to use it ?

Upvotes: 1

Views: 310

Answers (1)

Peter
Peter

Reputation: 11

I have put files in assets directory - it solves the problem.

Upvotes: 1

Related Questions