i`m facing this memory leak after closing my activity by pressing back-button:
Since i couldnt figure out what it is, i outcommented almost my whole code to:
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
protected void onPause()
{
super.onPause();
}
protected void onDestroy()
{
super.onDestroy();
}
I guess it has something to do with AudioManager. But since i outcommented anything i dont have a clue what it could be.
Any advice?
Update: I`m facing the same "issue" while making a heap dump on a hello-world app, created by android studio.....so i guess its somehow normal. But whats the explanation for this?