skip to Main Content

Starting Android Studio Giraffe 2022.3.1 following notification appears:

Failed to download Kotlin Compiler Maven artifact (org.jetbrains.kotlin:kotlin-dist-for-jps-meta:1.8.20-release). The search was performed in the following repos: https://repo1.maven.org/maven2 https://repository.jboss.org/nexus/content/repositories/public/ You can use Kotlin compiler which is bundled into your IDE. Select ‘Bundled’ version in ‘File | Settings | Build, Execution, Deployment | Compiler | Kotlin Compiler | Kotlin Compiler version’

In settings the Kotlin compiler version is 1.8.20-release. How to solve this ?

2

Answers


  1. I fixed it by following the instructions in the notification, except that "Kotlin Compiler" is in a top level settings menu in my version of Android Studio (2022.3.1 Patch 1), so I just went there and changed the "Kotlin compiler version" selection to be the bundled version.

    Login or Signup to reply.
  2. I fixed on my Mac below setups

    1. Open Android Studio -> Settings
    2. Click Kotlin Compiler
    3. Select ‘Bundled’ Kotlin Compiler version on dropdown.

    it will automatically install or re-open android studio.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search