Skip to content

Commit bc95391

Browse files
committed
TextCraft
1 parent ee17d80 commit bc95391

File tree

3 files changed

+8
-10
lines changed

3 files changed

+8
-10
lines changed

app/build.gradle.kts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,12 @@ android {
2727
}
2828
}
2929
compileOptions {
30-
sourceCompatibility = JavaVersion.VERSION_1_8
31-
targetCompatibility = JavaVersion.VERSION_1_8
30+
sourceCompatibility = JavaVersion.VERSION_17
31+
targetCompatibility = JavaVersion.VERSION_17
3232
}
33+
3334
kotlinOptions {
34-
jvmTarget = "1.8"
35+
jvmTarget = "17"
3536
}
3637
}
3738

gradle/libs.versions.toml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@ appcompat = "1.7.0"
77
material = "1.12.0"
88
activity = "1.9.2"
99
constraintlayout = "2.1.4"
10-
sdpAndroid = "1.1.1"
11-
sspAndroid = "1.1.1"
1210

1311
[libraries]
1412
androidx-core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "coreKtx" }
@@ -17,8 +15,6 @@ androidx-appcompat = { group = "androidx.appcompat", name = "appcompat", version
1715
material = { group = "com.google.android.material", name = "material", version.ref = "material" }
1816
androidx-activity = { group = "androidx.activity", name = "activity", version.ref = "activity" }
1917
androidx-constraintlayout = { group = "androidx.constraintlayout", name = "constraintlayout", version.ref = "constraintlayout" }
20-
sdp-android = { module = "com.intuit.sdp:sdp-android", version.ref = "sdpAndroid" }
21-
ssp-android = { module = "com.intuit.ssp:ssp-android", version.ref = "sspAndroid" }
2218

2319
[plugins]
2420
android-application = { id = "com.android.application", version.ref = "agp" }

textCraft/build.gradle.kts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,12 @@ android {
2222
}
2323
}
2424
compileOptions {
25-
sourceCompatibility = JavaVersion.VERSION_1_8
26-
targetCompatibility = JavaVersion.VERSION_1_8
25+
sourceCompatibility = JavaVersion.VERSION_17
26+
targetCompatibility = JavaVersion.VERSION_17
2727
}
28+
2829
kotlinOptions {
29-
jvmTarget = "1.8"
30+
jvmTarget = "17"
3031
}
3132
}
3233

0 commit comments

Comments
 (0)