Reputation: 3084
Is there a way to set eclipse to warn you when you are using deprecated methods and classed on Android?
Upvotes: 0
Views: 1750
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