How can I debug the RAM consumption of my Android application at runtime?

I need to deduce my application RAM consumption in Android at runtime. I am using Java. I need a java method that will return the current RAM consumption of my application.

+4
source share
1 answer

The easiest way is to use the memory monitor in Android studio when your device is connected to your PC

0
source

Source: https://habr.com/ru/post/1684309/


All Articles