Hi folks, anyone else receiving `Could not resolve...
# intellij
a
Hi folks, anyone else receiving
Could not resolve: org.jetbrains.kotlin:kotlin-stdlib:1.4.32
after update to
2021.1
? Already tried do invalidate caches and delete the
.idea
folder but still having this issue…e
g
I also delete my .iml file and my resolution errors go away for a few minutes: • close IntelliJ • delete 
.idea/
 and 
ProjectName.iml
 files in my project •
mvn clean
• reopen IntelliJ
I think I'm actually having a different problem. 😕
a
@Ademir Queiroga If the problem is still actual, can you please share your IDEA log file?
a
Actually I figured out that the problem was somewhat unrelated with this… I was instantiating a
FileInputStream(properties)
in my gradle.kts file as one of the first steps of the gradle script. This instantiation was failing for some reason… Then I changed the implementation to use
file()
and magically everything started to work again.
🙏 1