Specify AppSweep in app module

This commit is contained in:
Kirill Kamakin
2022-05-28 14:04:43 +02:00
parent f7034d8058
commit 07bf68475e
2 changed files with 3 additions and 13 deletions

View File

@@ -8,7 +8,8 @@ plugins {
id 'com.google.gms.google-services' id 'com.google.gms.google-services'
id 'com.google.firebase.crashlytics' id 'com.google.firebase.crashlytics'
id 'com.google.firebase.firebase-perf' id 'com.google.firebase.firebase-perf'
id "org.sonarqube" version "3.3" // https://plugins.gradle.org/plugin/com.guardsquare.appsweep
id "com.guardsquare.appsweep" version "1.0.0"
} }
android { android {
@@ -63,15 +64,6 @@ android {
} }
} }
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = '1.8'
}
buildFeatures { buildFeatures {
viewBinding true viewBinding true
} }

View File

@@ -34,8 +34,6 @@ buildscript {
plugins { plugins {
// https://plugins.gradle.org/plugin/org.sonarqube // https://plugins.gradle.org/plugin/org.sonarqube
id "org.sonarqube" version "3.3" id "org.sonarqube" version "3.3"
// https://github.com/Guardsquare/appsweep-gradle/releases
id "com.guardsquare.appsweep" version "1.0.0"
} }
task clean(type: Delete) { task clean(type: Delete) {
@@ -49,4 +47,4 @@ sonarqube {
property "sonar.host.url", "https://sonarcloud.io" property "sonar.host.url", "https://sonarcloud.io"
property "sonar.androidLint.reportPaths", "build/reports/lint-results-debug.xml" property "sonar.androidLint.reportPaths", "build/reports/lint-results-debug.xml"
} }
} }