From b95060a69d19c0a927f2a0b2fb0ffc25491e0206 Mon Sep 17 00:00:00 2001 From: Kunal Parmar Date: Tue, 23 Apr 2024 23:19:07 +0530 Subject: [PATCH] 7 --- build.gradle | 23 ++++++++++------------- 1 file changed, 10 insertions(+), 13 deletions(-) diff --git a/build.gradle b/build.gradle index f6afd9a..af676d2 100644 --- a/build.gradle +++ b/build.gradle @@ -2,19 +2,6 @@ apply plugin: 'com.android.application' apply plugin: 'kotlin-android' apply plugin: 'kotlin-android-extensions' - -plugins { - id "org.sonarqube" version "4.4.1.3373" -} - -sonar { - properties { - property "sonar.projectKey", "TheRedHatter_hello-world" - property "sonar.organization", "theredhatter" - property "sonar.host.url", "https://sonarcloud.io" - } -} - android { compileSdkVersion 29 buildToolsVersion "29.0.2" @@ -41,7 +28,17 @@ android { } } +plugins { + id "org.sonarqube" version "4.4.1.3373" +} +sonar { + properties { + property "sonar.projectKey", "TheRedHatter_hello-world" + property "sonar.organization", "theredhatter" + property "sonar.host.url", "https://sonarcloud.io" + } +} dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"