Skip to content

Commit

Permalink
Merge pull request #62 from rees46/chore/downgrade-java-version
Browse files Browse the repository at this point in the history
chore: Downgrade java version
  • Loading branch information
TorinAsakura authored Sep 24, 2024
2 parents 34da829 + ea7edd9 commit a07b527
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions personalization-sdk/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ android {
}

compileOptions {
sourceCompatibility JavaVersion.VERSION_22
targetCompatibility JavaVersion.VERSION_22
sourceCompatibility JavaVersion.VERSION_20
targetCompatibility JavaVersion.VERSION_20
}

kotlinOptions {
jvmTarget = '22'
jvmTarget = '20'
}

sourceSets {
Expand Down
6 changes: 3 additions & 3 deletions sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,12 @@ android {
}

compileOptions {
sourceCompatibility JavaVersion.VERSION_22
targetCompatibility JavaVersion.VERSION_22
sourceCompatibility JavaVersion.VERSION_20
targetCompatibility JavaVersion.VERSION_20
}

kotlinOptions {
jvmTarget = '22'
jvmTarget = '20'
}
}

Expand Down

0 comments on commit a07b527

Please sign in to comment.