How to integrate sonarqube in android studio?

被刻印的时光 ゝ 提交于 2019-12-20 08:44:46

问题


How we can integrate sonarqube in android studio? I have come across static code analysis using sonarqube. Explain how we can achieve that. There are many link available to integrate sonar-runner and sonarqube but either outdated or not sufficient to get the job done.


回答1:


Sonarqube is static code analyzer tool on server side. It is very useful to write clean and quality code. You should have sonarqube running on localhost or server. There create a new project giving name and unique id, this name and unique we will use to identify us to the server along with our username and password. Few things need to be set up on server side like-

  1. Create a user.
  2. Create new project with unique id.

Now in Android studio we are going use gradle sonarqube command to analyze our project with sonarqube.

There are following steps need to be covered before running gradle sonarqube command-

  1. First we need to have gradle installed on our machine.
  2. (Optional) To install sonarqube plugin in android studio. Go to-

File -> Settings -> Plugins -> then type sonarqube and click on Browse repositories at the bottom.

  1. Open build.gradle file, add plugin sonarqube.org and add following properties-

    apply plugin: "org.sonarqube"
    
    sonarqube {
        properties {
            property "sonar.projectName", "MyProject"
            property "sonar.projectKey", "com.example.myproject"
            property "sonar.host.url", "http://192.114.1.1:9000"
            property "sonar.language", "java"
            property "sonar.sources", "src/main/"
            property "sonar.login", "username"
            property "sonar.password", "password"
        }
    }    
    
  2. Open project gradle file and in dependencies add-

    dependencies {
        classpath "org.sonarsource.scanner.gradle:sonarqube-gradle-plugin:2.6.1"
    }
    
  3. And in repository add-

    allprojects {
        repositories {
            maven {
                url "https://plugins.gradle.org/m2/"
            }
        }
    }
    

Now on Android studio side your setup is done, run the command- gradle sonarqube to run the analysis.

If working in team and want to create different branches for all developers, run command- gradle sonarqube -Dsonar.branch={YouName}




回答2:


If you are using gradle 3.X follow this steps:

1.- Download and run on localhost Sonarqube from this: https://www.sonarqube.org/downloads/

2.- At the gradle.properties:

systemProp.sonar.host.url=http://localhost:9000
systemProp.sonar.login=XXXXXXXXXXXXXXXX (put your token)

3.- At the build.gradle(Module:app) inside repositories:

maven {
            url "https://plugins.gradle.org/m2/"
        }

And inside dependencies:

classpath "org.sonarsource.scanner.gradle:sonarqube-gradle-plugin:2.7"

And finally outside buildscript:

apply plugin: "org.sonarqube"

4.- Run the command: gradle sonarqube

5.- wait 5 minutes after build successfull to see the result report




回答3:


Integrating Sonarqube can be a bit hard, I wrote a Gradle plugin for Android to make it easier.

Here is an article about it: https://proandroiddev.com/android-analyzer-df0e4d80dc74

Here is the plugin: https://github.com/pinchbv/android-analyzer



来源:https://stackoverflow.com/questions/43811106/how-to-integrate-sonarqube-in-android-studio

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