File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed
build-logic/src/main/java Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ class ApplicationConventionPlugin : Plugin<Project> {
23
23
}
24
24
extensions.configure<ApplicationExtension > {
25
25
configureKotlinAndroid(this )
26
- packaging {
26
+ packagingOptions {
27
27
resources {
28
28
excludes + = " /META-INF/{AL2.0,LGPL2.1}"
29
29
excludes + = " META-INF/DEPENDENCIES"
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ internal fun Project.configureKotlinAndroid(
15
15
) {
16
16
commonExtension.apply {
17
17
compileSdk = 33
18
- packaging {
18
+ packagingOptions {
19
19
resources {
20
20
excludes + = " /META-INF/{AL2.0,LGPL2.1}"
21
21
excludes + = " META-INF/DEPENDENCIES"
@@ -40,7 +40,7 @@ internal fun Project.configureKotlinAndroid(
40
40
// Use withType to workaround https://youtrack.jetbrains.com/issue/KT-55947
41
41
tasks.withType<KotlinCompile >().configureEach {
42
42
kotlinOptions {
43
- // Set JVM target to 11
43
+ // Set JVM target to 17
44
44
jvmTarget = JavaVersion .VERSION_11 .toString()
45
45
// Treat all Kotlin warnings as errors (disabled by default)
46
46
// Override by setting warningsAsErrors=true in your ~/.gradle/gradle.properties
Original file line number Diff line number Diff line change 2
2
# Define the dependency versions
3
3
# Project
4
4
# kotlin
5
- kotlinVersion = " 1.8.10 "
5
+ kotlinVersion = " 1.8.20 "
6
6
kotlinxCoroutines = " 1.6.4"
7
7
kotlinxSerializationJson = " 1.5.0"
8
8
# gradle
9
- androidGradlePlugin = " 8.0.0 "
9
+ androidGradlePlugin = " 7.4.2 "
10
10
11
11
# Modules
12
12
# androidx
Original file line number Diff line number Diff line change 1
1
# Sat Apr 01 05:16:59 IST 2023
2
2
distributionBase =GRADLE_USER_HOME
3
- distributionUrl =https\://services.gradle.org/distributions/gradle-8.1 -bin.zip
3
+ distributionUrl =https\://services.gradle.org/distributions/gradle-8.0 -bin.zip
4
4
networkTimeout =10000
5
5
distributionPath =wrapper/dists
6
6
zipStorePath =wrapper/dists
You can’t perform that action at this time.
0 commit comments