Skip to content

Commit

Permalink
updated build.gradle to solve java version error in easel
Browse files Browse the repository at this point in the history
  • Loading branch information
Raviramnani1 committed Aug 6, 2024
1 parent 4754326 commit eb5df4b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions easel/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@ android {
compileSdkVersion 34

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

kotlinOptions {
jvmTarget = '1.8'
jvmTarget = '17'
}

sourceSets {
Expand Down

0 comments on commit eb5df4b

Please sign in to comment.