Skip to content

Commit

Permalink
Make this compatible with more Java compilers
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanarellano committed Oct 3, 2024
1 parent 45c74e9 commit 40edfb1
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,12 @@ android {
}

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

kotlinOptions {
jvmTarget = '1.8'
}

if (project.android.hasProperty('namespace')) {
Expand Down

0 comments on commit 40edfb1

Please sign in to comment.