The compiler used by the IDE warns you about memory statically allocated, like when you say String s = "hello world"
It cannot warn you about dynamic memory allocation. Using external services obliges you to dynamic allocate memory: if you allocate too much of it, you may run out of it