Skip to content

Commit

Permalink
Update JavaVersion for Android app
Browse files Browse the repository at this point in the history
The sourceCompatibility and targetCompatibility in build.gradle files have been updated from JavaVersion 17 to JavaVersion 21. This change reflects the need to align with recent advancements in the Java language and its environment.
  • Loading branch information
luckycreationsindia committed Jul 19, 2024
1 parent 716c7bd commit 0292bcb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions example/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ android {
compileSdkVersion 34

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

sourceSets {
Expand Down

0 comments on commit 0292bcb

Please sign in to comment.