theJosh
theJosh

Reputation: 3084

Finding deprecated methods and classed on Android

Is there a way to set eclipse to warn you when you are using deprecated methods and classed on Android?

Upvotes: 0

Views: 1750

Answers (1)

kosa
kosa

Reputation: 66637

Eclipse by default warns you on deprecation. If not,

Right-click on your project and go to Properties > Java Compiler > Errors/Warnings. Click Enable project specific settings and then unfold Deprecated and restricted API and select appropriate value.

Upvotes: 3

Related Questions