-
-
Notifications
You must be signed in to change notification settings - Fork 735
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Java 1.8 compile option unnecessary since Gradle 7 #1160
Comments
Do you want to open a PR for this? Can you please add a reference link to an official resource that states the exact version since when Java 1.8 is used by default? |
Thanks for opening this issue!
|
https://developer.android.com/studio/releases/gradle-plugin?hl=nl#java-8-default |
Is this only relevant for when compiling the Parse Android SDK, or also for developers who add the SDK as a dependency? |
@mtrezza it's mostly relevant for this SDK as we do not know which version the users will use. Most probably all users already uses Gradle 7 and latest Android toolchains. |
New Feature / Enhancement Checklist
Following block in all build.gradle files is not needed anymore since using Gradle 7 because implicitly defined:
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
Can be removed.
The text was updated successfully, but these errors were encountered: