itachi1706/CheesecakeAppUpdater

View on GitHub
build.gradle

Summary

Maintainability
Test Coverage
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
    id 'com.android.library' version '8.2.1' apply false
    id 'com.android.application' version '8.2.1' apply false
    id 'org.jetbrains.kotlin.android' version '2.0.0' apply false
    id "org.sonarqube" version "5.0.0.4638"
}

sonarqube {
    properties {
        property "sonar.projectKey", "itachi1706_CheesecakeAppUpdater"
        property "sonar.organization", "itachi1706"
        property "sonar.host.url", "https://sonarcloud.io"
        property "sonar.androidLint.reportPaths", "app/build/reports/lint-results-debug.xml,appupdater/build/reports/lint-results-debug.xml"
        property "sonar.projectVersion", "${project(':appupdater').android.defaultConfig.versionName}"
    }
}