As far as I\'m aware, each Android phones limits all apps to a maximum memory usage of about 16, 24 or 32Mb. I\'ve just seen people discussing the app Dungeon Defenders whic
If you do not need to render the image in real time, the answer is simple, just send the image to your server, with some image processing command, render it there, and send it back to Android. If your application requires >256MB RAM then you're going to severely limit a lot of your audience, and that's not good.
As far as i know Android is able to use more than 256MB of RAM since 2.2
However most phones shows less than they have, because there is always some Ram reserved for the system.
I'm using NDK for my app. and for my testing device when i take more than the 16mb limit (HTC magic, android 2.2) the app crashes and the system throws exceptions for invalid addresses access. So no, you can´t use all the memory you want neither from native side or from the java-managed side.
I've read about using different .so libraries and load them when running your app, but i dont know how it works or if its a viable workaround. Any suggestions?
On the droidcon in Berlin, Germany, I heard that you can't increase the amount of RAM an application can use on the dalvik side. You can use all available memory on the native side so I guess the named application have implemented heavy memory stuff native in C using the NDK. Thats the only possible solution I know...
Update It wasn't the conference, it was a Google Lab visit at my university with Reto Meier and colleagues.