Pacerier
Pacerier

Reputation: 89753

Why android.app.Activity.onTrimMemory couldn't be overridden?

Good afternoon all,

I was wondering why is it that android.app.Activity.onTrimMemory couldn't be overridden?

enter image description here

Does anyone know how can we fix the problem?

Upvotes: 0

Views: 1132

Answers (1)

CommonsWare
CommonsWare

Reputation: 1007474

That method was added in API Level 14. Your build target is an API level less than 14. Hence, the method does not exist, and you cannot override it.

Upvotes: 3

Related Questions