我正在使用 SonarQube 5.1 来收集 Android 应用的所有 Java 和 Lint 错误。< / p>
几乎所有重要问题都已被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=" <uses-sdk android:minSdkVersion="14" />"
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字符串添加到新规则。
非常感谢任何帮助!
答案 0 :(得分:1)
无意中我发现了如何做到这一点。步骤进行:
不要忘记在个人资料中激活此自定义规则。
PS :恕我直言,根本问题是文档未更新,绝大多数网址目前已被破坏,由于CodeHaus termination。在纠正旧的断开链接之前,如果执行自动重定向将会很棒。