Skip to content

Commit

Permalink
Dependencies updated.
Browse files Browse the repository at this point in the history
  • Loading branch information
stevdza-san committed Oct 17, 2023
1 parent d08fb07 commit 1810370
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ android {
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = '17'
jvmTarget = '1.8'
}
buildFeatures {
compose true
Expand Down
8 changes: 4 additions & 4 deletions messagebar/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ android {
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = '17'
jvmTarget = '1.8'
}
buildFeatures {
compose true
Expand Down Expand Up @@ -61,7 +61,7 @@ publishing {
release(MavenPublication) {
groupId = 'com.github.stevdza-san'
artifactId = 'MessageBarCompose'
version = '1.0.7.1'
version = '1.0.7.2'

afterEvaluate {
from components.release
Expand Down

0 comments on commit 1810370

Please sign in to comment.