Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,21 +26,21 @@

### Requirements

Android API version 31 or later and Java 8+.
Android API version 31 or later and Java 17+.

> :warning: Applications targeting Android SDK version 30 (`targetSdkVersion = 30`) and below should use version 2.9.0.

Here’s what you need in `build.gradle` to target Java 8 byte code for Android and Kotlin plugins respectively.
Here’s what you need in `build.gradle` to target Java 17 byte code for Android and Kotlin plugins respectively.
Comment on lines +29 to +33
Copy link

Copilot AI Feb 7, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

PR metadata (title/description) says this is a README-only update, but the diff includes a Gradle/AGP/Kotlin toolchain upgrade plus large test refactors and CI workflow changes. Please update the PR title/description to reflect the real scope so reviewers and release notes are accurate.

Copilot uses AI. Check for mistakes.

```groovy
android {
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'
}
}
```
Expand Down
Loading