Hi,
I have an Android project that is using Ionic Capacitor and I realised that the .gradle files that are autogenerated by Capacitor are setting as sourceCompatibility and targetCompatibility JavaVersion.VERSION_1_8 but the rest of the app is using JavaVersion.VERSION_11.
This difference is making Gradle to choose 1.8 when compiling the project.
Is there a way to configure Capacitor to use version 11. Ideally this change needs to prevent that if later “capacitor update android” is executed, the value is not reverted back to 1.8.
Thanks!