Skip to content

Commit

Permalink
feat: update compileOptions to java 17 and library version 1.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
iamageo committed Feb 11, 2024
1 parent 8c1cfb9 commit 890d42d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ android {
}

compileOptions {
sourceCompatibility JavaVersion.VERSION_11
targetCompatibility JavaVersion.VERSION_11
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}

kotlinOptions {
jvmTarget = '11'
jvmTarget = '17'
}

viewBinding {
Expand Down
10 changes: 5 additions & 5 deletions library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
}

group = 'com.github.iamageo'
version = '1.0.5'
version = '1.0.6'

android {
namespace 'com.iamageo.library'
Expand All @@ -28,11 +28,11 @@ android {
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_11
targetCompatibility JavaVersion.VERSION_11
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}
kotlinOptions {
jvmTarget = '11'
jvmTarget = '17'
}
}

Expand Down Expand Up @@ -64,7 +64,7 @@ afterEvaluate {
from components.release
groupId = 'com.github.iamageo'
artifactId = 'another_read_more'
version = '1.0.5'
version = '1.0.6'
}
}
}
Expand Down

0 comments on commit 890d42d

Please sign in to comment.