Android Studio manage Gradle JDKs

1 minute read

Updating Android Studio is always some ‘exciting’ event - what changes and will it break my current setup. Some changes in 4.2 made me imediatelly rollback to 4.1.3. Android Studio 2020.3.1 Arctic Fox got a new chance and I’m really plessantly surprised!

A small feature already introduced in 4.2 is the ability to manage installed JDKs from Android Studio. Till 4.2 you might not bother setting some JDK / JAVA_HOME stuff at all - Android Studio used the bundled JDK 8.

Having to deal with e.g. custom cacerts in your JDK security folder - you might got a little frustrated about the Android Studio updating process.

Handling JDK(s) separately from the Android Studio embedded was already possible, but a little knowledge, tools (like SDKMAN!) or tutorials are necessary.

Update 19.12.2021: Using brew to install and manage updates is common, so this could also be an interesting alternative for installing multiple JDKs. Jake mentioned a good alternative to the standard JDK source.

I still prefer the new integration via Android Studio - it installs the JDKs into the users ~/Library/Java/JavaVirtualMachines directory - I like it better than the global installation, but it’s a matter of taste. Also, Android Studio notifies me of version updates - if you use brew frequently, this may not be an argument for you.

See my post manage multiple Java JDK versions to switch between JDK versions.

Integrated Preference for Gradle JDK management

But now there is a nice JDK configuration integrated in the Android Studio preferences.

Open Preferences…, navigate to Build, Execution, Deployment > Build Tools > Gradle

In the menu Grade JDK: you can see the currently selected JDK for the current project. From this menu you can select the other JDKs found. Or you can Download a new one with Download JDK….

Android Studio Preferences Gradle JDK

Form the dialog you can select your Version and your Vendor and the Location to install the JDK to.

2021-08-28-android_studio_preferences_gradle_jdk_download

2021-08-28-android_studio_preferences_gradle_jdk_download

With the separate Installation of the JDK customizations in that instance will not affect your Android Studio bundled JDK.

Another benefit is that Android Studio will notify you on updates to the installed JDK.

2021-08-28-android_studio_notification_jdk_update