RAM consumption with empty application
- Android Development
- 5 Replies
If minimising memory consumption is your priority, then I would suggest that a memory managed language such as Java isn't the right solution. You may be better off coding this as a native application in C or C++.
That way you have much more control over the memory allocation, and you don't incur the vast overhead of the VM runtime.
A native app will have a much smaller memory footprint.
That way you have much more control over the memory allocation, and you don't incur the vast overhead of the VM runtime.
A native app will have a much smaller memory footprint.
