I have no idea what I changed in my project, but it suddenly cannot get past this step while building gradle scripts.
There is no problem building it with j
Please run gradle from command line (opening a terminal in your project folder) using -info and check where it stop. I was experiencing something similar and it was related with jcenter(), because it can't reach a resource:
Resource missing. HTTP GET
so, changing jcenter()
by mavenCentral()
in MyProject/build.gradle
did the trick.
I hope it can help.