When i update my ADT plugin for Android i get run android lint ,what are adavantages of it to use it for android project?

走远了吗. 提交于 2019-12-01 06:46:06

I've tried lint just for fun. What I can say. It's a type of static analysis tool that is developed specifically for Android. Thus, a developer of Android applications can run automatic static tests across his/her code.

You can run lint in Eclipse simply pressing on button in the panel (this button in my case is near the button of AVD Manager. After that Eclipse opens a window where all violations of lint rules are displayed. You can double click on the error and correct it. As a static analysis tool it can have false positives.

The lint tool has been already supplied with the number of embedded rules. You can read about them on this lint page.

As for lint xml file, I don't know what to do with it.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!