Error starting android

I am using android lint tools with eclipse to find potential errors in my project, but after a few seconds it shows:

"Running Android Lint has encountered a problem"

When I click the details, it shows:

"Failed to throw java.lang.NullPointerException."

Can someone give me some advice.

+6
source share
2 answers

The Lint Tool indicates errors in the XML layout files in the resources, checks all layout files and resolves the errors.

To see the error, you can do from the menu Eclipse-> Windows → Show View-> Problems.

+3
source

goto help-> install new software → work with " https://dl.google.com/android/eclipse/ "

Note. Make sure you use https and not the update center http: https://dl.google.com/android/eclipse/

Now, when you restart the Eclipse IDE, you should not see Lint Error pop-up messages.

0
source

Source: https://habr.com/ru/post/924501/


All Articles