Skip to content

Commit 3172ed9

Browse files
author
“yashwantgowla-simform”
committed
Feature: Sonarqube Integration
Lint issues resolved
1 parent f9c685b commit 3172ed9

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

app/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,11 @@ android {
3636
}
3737
}
3838
compileOptions {
39-
sourceCompatibility JavaVersion.VERSION_1_8
40-
targetCompatibility JavaVersion.VERSION_1_8
39+
sourceCompatibility JavaVersion.VERSION_17
40+
targetCompatibility JavaVersion.VERSION_17
4141
}
4242
kotlinOptions {
43-
jvmTarget = '1.8'
43+
jvmTarget = '17'
4444
useIR = true
4545
freeCompilerArgs += "-opt-in=kotlin.RequiresOptIn"
4646
}

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ buildscript {
1515
gradlePluginPortal()
1616
}
1717
dependencies {
18-
classpath 'com.android.tools.build:gradle:8.6.0'
18+
classpath 'com.android.tools.build:gradle:8.6.1'
1919
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_gradle_version"
2020
classpath "com.google.android.libraries.mapsplatform.secrets-gradle-plugin:secrets-gradle-plugin:2.0.1"
2121
}
@@ -28,6 +28,6 @@ allprojects {
2828
}
2929
}
3030

31-
task clean(type: Delete) {
32-
delete rootProject.buildDir
31+
tasks.register('clean', Delete) {
32+
delete rootProject.layout.buildDirectory
3333
}

0 commit comments

Comments
 (0)