Android 工作室和 lint.xml

Android Studio and lint.xml

我想创建一个 lint.xml 文件并在我们的 VCS 上共享它,以便项目的所有贡献者都可以使用它。 Google documentation 状态:

If you are configuring lint preferences in Android Studio, the lint.xml file is automatically created and added to your Android project for you

它对我的项目。我不知道它在哪里保存我对检查所做的更改。如果我点击 Prefercens => Editor => Inspections => Export,那么它会导出一个完全不同的文件结构:

<?xml version="1.0" encoding="UTF-8"?>
<inspections version="1.0">
  <option name="myName" value="Blabla" />
</inspections>

而不是 lint 的:

<?xml version="1.0" encoding="UTF-8"?>
<lint>
  <issue id="UnusedResources">
  <ignore ... />
  </issue>
</lint>

如果我单击 "Analyze => Inspect Code",我想在 IDE 中控制我的警告,在一个可以在 VCS 上共享的地方。那可能吗?

编辑 IntelliJ 检查设置似乎更好,它包括 lint 和额外的 IntelliJ 检查,而不仅仅是 lint。

您可以在 Android Studio 中导出和导入 IntelliJ 检查设置,然后与您的团队成员分享。