Reputation: 89753
Good afternoon all,
I was wondering why is it that android.app.Activity.onTrimMemory couldn't be overridden?
Does anyone know how can we fix the problem?
Upvotes: 0
Views: 1132
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