Sonar:为 Android Lint 创建新规则

Sonar: Create new rule for Android Lint

我正在使用 SonarQube 5.1 以收集所有 JavaLint Android 个应用程序的错误。

Sonar 使用 Lint 插件已经捕获了几乎所有重要问题,但我发现至少有一个问题未包括在内:

<issue
    id="GradleOverrides"
    severity="Warning"
    message="This `minSdkVersion` value (`14`) is not used; it is always overridden by the value specified in the Gradle build script (`15`)"
    category="Correctness"
    priority="4"
    summary="Value overridden by Gradle build script"
    explanation="The value of (for example) `minSdkVersion` is only used if it is not specified in the `build.gradle` build scripts. When specified in the Gradle build scripts, the manifest value is ignored and can be misleading, so should be removed to avoid ambiguity."
    errorLine1="    &lt;uses-sdk android:minSdkVersion=&quot;14&quot; />"
    errorLine2="              ~~~~~~~~~~~~~~~~~~~~~~~~~~">
    <location
        file="C:\Code\Android\TestApp\app\src\main\AndroidManifest.xml"
        line="5"
        column="15"/>
</issue>

此问题与 AndroidManifest.xml(设置 Android minSdkVersion 属性的旧方法)和 build.gradle(设置 minSdkVersion 元素的当前方法)有关.

我已阅读 documentation about creating new rules in Sonar,但我 仍然很困惑。我已经下载了 SSLR for XML 并执行它以找到 XPath 字符串。

我的 XML 文件是:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.juanacaja.testapp" >

    <uses-sdk android:minSdkVersion="14" />

    <application
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name=".MainActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>
</manifest>

...查找 minSdkVersion 元素的 XPath 是:

//manifest/uses-sdk/@android:minSdkVersion

我不确定我现在必须做什么。此外,SonarQube 5.1 web 界面已更改,我不知道如何将 XPath 字符串添加到新规则中。

任何帮助将不胜感激!

无意中我找到了如何做到这一点。步骤:

  1. 管理员或其他具有足够权限的用户身份登录。
  2. Look for XPath rule 对于语言,在本例中为 XML。
  3. 按 "Custom Rules" 文本附近的 创建 按钮并填写表格。

不要忘记在您的个人资料中激活此自定义规则。

PS:恕我直言,根本的问题是文档没有更新,并且由于 CodeHaus termination,目前绝大多数 URL 都已损坏。在更正旧的损坏链接之前,如果执行自动重定向会很棒。