Reputation: 61
I'm using android lint tools with eclipse to find potential bugs in my project, but after a few seconds it shows:
"Running Android Lint encountered a problem"
When I click details, it shows:
"Failed java.lang.NullPointerException".
Can someone give me some suggestions.
Upvotes: 6
Views: 6294
Reputation: 17
goto help->install new software -> work with "https://dl.google.com/android/eclipse/"
Note : Make sure you that you are using the https, not the http URL to the update center: https://dl.google.com/android/eclipse/
Now when you restart Eclipse IDE, you should not see any Lint Error pop-up's messages.
Upvotes: 0
Reputation: 29199
Lint Tool indicates errors in XML Layout Files in Resources, check all the layout files, and resolve error.
To See error, you can do from Eclipse Menu-> Windows -> Show View-> Problems.
Upvotes: 3