Home > OS >  Antivirus warning in kotlin-util-io-1.6.21
Antivirus warning in kotlin-util-io-1.6.21

Time:05-07

I'm learning Kotlin and Spring Boot and recently am running into an antivirus warning about a file called oneeva.a!ml while building my project and gradle downloads kotlin-util-io-1.6.21.jar

org.gradle.internal.resolve.ArtifactResolveException: Could not download kotlin-util-io-1.6.21.jar (org.jetbrains.kotlin:kotlin-util-io:1.6.21)

This happens when I try to build a new Spring Boot project. No one else online seems to have encountered this before. Does anyone have any guidance?

edit: This problem occurs when creating a new spring initializer build using Gradle but not on Maven.

CodePudding user response:

I also got the same issue after creating a new project on Android Studio Bumblebee | 2021.1.1 Patch 3 . I tried manually downloading kotlin-util-io-1.6.21.jar but it is getting blocked on my Windows machine due to some virus detected. Downgrading to kotlin-util-io-1.6.20 worked for me.

CodePudding user response:

Got it resolved by updating your Windows Defender database through Windows Update.

I just updated to the latest version, works again.

See: https://youtrack.jetbrains.com/issue/KT-52297

  • Related