Reputation: 6699
I'm trying to see what all I would have to change in my code to support older versions of the API (before 14). I thought Lint would throw errors anywhere in the code I was calling a later API unchecked but I can't get this to happen even after clearing Lint markers and cleaning and refreshing the project many times.
Any ideas?
edit: I've discovered if I go to each file individually and make changes to it, and then save it, then Lint is checking for errors. This would be very tedious to do for each file however.
Upvotes: 1
Views: 175
Reputation: 113
You can right click on your project and under Android Tools
You will find Run Lint: Check for Common Errors
. That should do it
Upvotes: 3