Skip to content

Commit 722c2f2

Browse files
committed
Bump version to 2.35.4
- Update the Android app version name for the v2.35.4 release - Compile Java and Kotlin bytecode with JVM 11 to match updated dependency bytecode 🤖 Auto-generated
1 parent a045c16 commit 722c2f2

1 file changed

Lines changed: 9 additions & 3 deletions

File tree

app/build.gradle.kts

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ android {
2020
minSdk = 29
2121
targetSdk = 36
2222
versionCode = gitVersionCode()
23-
versionName = "2.35.3"
23+
versionName = "2.35.4"
2424

2525
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
2626
vectorDrawables {
@@ -112,8 +112,8 @@ android {
112112
}
113113
}
114114
compileOptions {
115-
sourceCompatibility = JavaVersion.VERSION_1_8
116-
targetCompatibility = JavaVersion.VERSION_1_8
115+
sourceCompatibility = JavaVersion.VERSION_11
116+
targetCompatibility = JavaVersion.VERSION_11
117117
}
118118
buildFeatures {
119119
compose = true
@@ -126,6 +126,12 @@ android {
126126
}
127127
}
128128

129+
kotlin {
130+
compilerOptions {
131+
jvmTarget = org.jetbrains.kotlin.gradle.dsl.JvmTarget.JVM_11
132+
}
133+
}
134+
129135
fun gitVersionCode(): Int {
130136
return runCatching {
131137
val process = ProcessBuilder("git", "rev-list", "--count", "HEAD")

0 commit comments

Comments
 (0)